mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@logto/connector-core",
|
|
"version": "1.0.0-beta.9",
|
|
"main": "./lib/index.js",
|
|
"exports": "./lib/index.js",
|
|
"typings": "./lib/index.d.ts",
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"dev": "tsc --watch --preserveWatchOutput --incremental",
|
|
"build": "rm -rf lib/ && tsc",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"@logto/shared": "^1.0.0-beta.9",
|
|
"@silverhand/essentials": "^1.2.0",
|
|
"zod": "^3.14.3"
|
|
},
|
|
"devDependencies": {
|
|
"@silverhand/eslint-config": "1.0.0",
|
|
"@silverhand/ts-config": "1.0.0",
|
|
"@types/node": "^16.3.1",
|
|
"eslint": "^8.21.0",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"engines": {
|
|
"node": "^16.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|