0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/cli/package.json
2022-04-20 23:23:41 +08:00

53 lines
1.3 KiB
JSON

{
"name": "@logto/cli",
"version": "0.1.0",
"main": "lib/index.js",
"repository": "https://github.com/logto-io/logto",
"author": "Logto",
"license": "MPL-2.0",
"files": [
"lib",
"bin"
],
"bin": {
"logto": "bin/run.js"
},
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"precommit": "lint-staged",
"build": "rm -rf lib/ && tsc",
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint -- --format json --output-file report.json",
"prepack": "pnpm build",
"dev": "ts-node --files src/index.ts"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@silverhand/eslint-config": "^0.10.2",
"@silverhand/ts-config": "^0.10.2",
"@types/node": "14",
"eslint": "^8.10.0",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.6.3"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@logto/schemas": "^0.1.0",
"chalk": "^4",
"commander": "^9.1.0",
"decamelize": "^5.0.0",
"dotenv": "^10.0.0",
"roarr": "^7.11.0",
"slonik": "^28.1.0",
"slonik-interceptor-preset": "^1.2.10",
"slonik-sql-tag-raw": "^1.1.4"
}
}