0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2021-06-22 06:49:19 -05:00
{
"name": "@logto/schemas",
2021-07-25 09:36:22 -05:00
"version": "0.1.0",
2021-06-22 06:49:19 -05:00
"main": "lib/index.js",
"repository": "https://github.com/logto-io/schemas",
"author": "Logto",
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2021-06-27 12:16:28 -05:00
"files": [
"lib"
],
2021-07-25 09:36:22 -05:00
"private": true,
2021-06-22 06:49:19 -05:00
"scripts": {
"preinstall": "npx only-allow pnpm",
"precommit": "lint-staged",
"generate": "ts-node src/gen/index.ts && eslint \"src/db-entries/**\" --fix",
2021-07-29 04:46:28 -05:00
"build": "pnpm generate && rm -rf lib/ && tsc --p tsconfig.build.json",
"lint": "eslint --ext .ts src",
2021-07-29 04:46:28 -05:00
"prepack": "pnpm build"
2021-06-22 06:49:19 -05:00
},
"engines": {
2021-07-29 04:46:28 -05:00
"node": ">=14.15.0"
2021-06-22 06:49:19 -05:00
},
"devDependencies": {
"@logto/eslint-config": "^0.1.0-rc.26",
2021-07-29 04:46:28 -05:00
"@logto/essentials": "^1.1.0-rc.2",
"@logto/ts-config": "^0.1.0-rc.26",
2021-07-03 06:13:05 -05:00
"@types/lodash.uniq": "^4.5.6",
2021-06-22 11:07:51 -05:00
"@types/node": "14",
2021-06-23 08:23:17 -05:00
"@types/pluralize": "^0.0.29",
"camelcase": "^6.2.0",
2021-07-11 05:06:03 -05:00
"eslint": "^7.30.0",
"lint-staged": "^11.1.1",
2021-07-03 06:13:05 -05:00
"lodash.uniq": "^4.5.0",
2021-06-23 08:23:17 -05:00
"pluralize": "^8.0.0",
2021-07-11 05:06:03 -05:00
"prettier": "^2.3.2",
2021-06-22 11:07:51 -05:00
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"zod": "^3.8.1"
2021-06-27 12:16:28 -05:00
},
2021-07-25 08:58:27 -05:00
"eslintConfig": {
"extends": "@logto"
},
"prettier": "@logto/eslint-config/.prettierrc",
"dependencies": {
"@logto/phrases": "^0.1.0"
},
"peerDependencies": {
"zod": "^3.8.1"
}
2021-06-22 06:49:19 -05:00
}