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

78 lines
2.1 KiB
JSON
Raw Normal View History

2021-06-22 06:49:19 -05:00
{
"name": "@logto/schemas",
2022-10-19 03:28:21 -05:00
"version": "1.0.0-beta.12",
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",
2022-10-19 02:15:24 -05:00
"alterations",
"alterations-js",
2022-10-19 02:15:24 -05:00
"tables"
2021-06-27 12:16:28 -05:00
],
2022-10-19 02:10:50 -05:00
"publishConfig": {
"access": "public"
},
2021-06-22 06:49:19 -05:00
"scripts": {
"precommit": "lint-staged",
"version": "./update-next.sh && git add alterations/",
"generate": "rm -rf src/db-entries && ts-node src/gen/index.ts && eslint \"src/db-entries/**\" --fix",
2022-10-18 02:40:36 -05:00
"build:alterations": "rm -rf 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",
2022-10-06 04:34:21 -05:00
"test": "jest",
"test:ci": "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.3.0",
2022-10-10 03:28:20 -05:00
"@silverhand/essentials": "^1.3.0",
"@silverhand/jest-config": "1.2.2",
"@silverhand/ts-config": "1.2.1",
2022-10-14 01:57:27 -05:00
"@types/jest": "^29.1.2",
2021-07-03 06:13:05 -05:00
"@types/lodash.uniq": "^4.5.6",
2022-10-13 01:39:09 -05:00
"@types/node": "^16.0.0",
2021-06-23 08:23:17 -05:00
"@types/pluralize": "^0.0.29",
"camelcase": "^6.2.0",
"eslint": "^8.21.0",
2022-10-14 01:57:27 -05:00
"jest": "^29.1.2",
"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"
},
"overrides": [
{
"files": [
"alterations/*.ts"
],
"rules": {
"unicorn/filename-case": "off"
}
}
]
2021-07-25 08:58:27 -05:00
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
2022-10-23 23:26:11 -05:00
"@logto/connector-kit": "1.0.0-beta.20",
"@logto/core-kit": "1.0.0-beta.20",
2022-10-23 23:26:11 -05:00
"@logto/language-kit": "1.0.0-beta.20",
2022-10-21 00:59:08 -05:00
"@logto/phrases": "workspace:^",
"@logto/phrases-ui": "workspace:^",
2022-10-23 23:26:11 -05:00
"zod": "^3.19.1"
}
2021-06-22 06:49:19 -05:00
}