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

61 lines
1.8 KiB
JSON
Raw Normal View History

2021-06-22 06:49:19 -05:00
{
"name": "@logto/schemas",
2022-09-07 11:21:37 -05:00
"version": "1.0.0-beta.9",
2021-06-22 06:49:19 -05:00
"main": "lib/index.js",
2022-04-24 22:26:41 -05:00
"author": "Silverhand Inc. <contact@silverhand.io>",
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2021-06-27 12:16:28 -05:00
"files": [
"lib",
"alterations"
2021-06-27 12:16:28 -05:00
],
2021-07-25 09:36:22 -05:00
"private": true,
2021-06-22 06:49:19 -05:00
"scripts": {
"precommit": "lint-staged",
"generate": "rm -rf src/db-entries && ts-node src/gen/index.ts && eslint \"src/db-entries/**\" --fix",
"build:alterations": "rm -rf alterations/*.d.ts alterations/*.js && tsc -p tsconfig.build.alterations.json",
"build": "pnpm generate && rm -rf lib/ && tsc -p tsconfig.build.json && pnpm build:alterations",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
"lint": "eslint --ext .ts src",
2022-05-05 05:26:30 -05:00
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build",
"test": "jest"
2021-06-22 06:49:19 -05:00
},
"engines": {
2022-04-23 20:50:59 -05:00
"node": "^16.0.0"
2021-06-22 06:49:19 -05:00
},
"devDependencies": {
"@silverhand/eslint-config": "1.0.0",
"@silverhand/essentials": "^1.2.1",
"@silverhand/jest-config": "1.0.0",
"@silverhand/ts-config": "1.0.0",
"@types/jest": "^28.0.0",
2021-07-03 06:13:05 -05:00
"@types/lodash.uniq": "^4.5.6",
"@types/node": "16",
2021-06-23 08:23:17 -05:00
"@types/pluralize": "^0.0.29",
"camelcase": "^6.2.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.0",
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",
"prettier": "^2.7.1",
"slonik": "^30.0.0",
2022-07-20 02:57:50 -05:00
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
2021-06-27 12:16:28 -05:00
},
2021-07-25 08:58:27 -05:00
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"@typescript-eslint/ban-types": "off"
}
2021-07-25 08:58:27 -05:00
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
2022-09-19 04:16:19 -05:00
"@logto/connector-kit": "^1.0.0-beta.13",
"@logto/core-kit": "^1.0.0-beta.13",
2022-09-07 11:21:37 -05:00
"@logto/phrases": "^1.0.0-beta.9",
"@logto/phrases-ui": "^1.0.0-beta.9",
"zod": "^3.18.0"
}
2021-06-22 06:49:19 -05:00
}