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

88 lines
2.4 KiB
JSON
Raw Normal View History

2021-06-22 06:49:19 -05:00
{
"name": "@logto/schemas",
2023-01-06 03:48:18 -05:00
"version": "1.0.0-beta.18",
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",
2022-11-20 22:24:02 -05:00
"type": "module",
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-12-19 21:25:47 -05:00
"main": "./lib/index.js",
"exports": {
2022-12-19 21:25:47 -05:00
".": "./lib/index.js",
"./lib/*": "./lib/*",
"./models": "./lib/models/index.js",
"./package.json": "./package.json"
},
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/",
2022-12-12 08:15:09 -05:00
"generate": "./generate.sh",
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",
2022-12-12 08:52:17 -05:00
"build:test": "pnpm generate && rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
"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",
"prepublishOnly": "! ls alterations/next-*",
"prepack": "pnpm build",
2022-12-11 07:07:21 -05:00
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm build:test && pnpm test:only",
2022-12-14 12:50:29 -05:00
"test:ci": "pnpm test:only"
2021-06-22 06:49:19 -05:00
},
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2021-06-22 06:49:19 -05:00
},
"devDependencies": {
"@silverhand/eslint-config": "1.3.0",
"@silverhand/essentials": "2.1.0",
"@silverhand/ts-config": "1.2.1",
2022-10-14 01:57:27 -05:00
"@types/jest": "^29.1.2",
2023-01-07 07:42:10 -05:00
"@types/node": "^18.11.18",
2021-06-23 08:23:17 -05:00
"@types/pluralize": "^0.0.29",
"camelcase": "^7.0.0",
"eslint": "^8.21.0",
2022-10-14 01:57:27 -05:00
"jest": "^29.1.2",
"lint-staged": "^13.0.0",
2021-06-23 08:23:17 -05:00
"pluralize": "^8.0.0",
"prettier": "^2.8.1",
"slonik": "^30.0.0",
2022-12-12 08:15:09 -05:00
"typescript": "^4.9.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"
},
"ignorePatterns": [
"src/db-entries/"
],
"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-12-14 00:23:59 -05:00
"@logto/connector-kit": "workspace:*",
"@logto/core-kit": "workspace:*",
"@logto/language-kit": "workspace:*",
"@logto/phrases": "workspace:*",
"@logto/phrases-ui": "workspace:*",
"@withtyped/server": "^0.3.1",
2022-12-14 00:23:59 -05:00
"zod": "^3.20.2"
}
2021-06-22 06:49:19 -05:00
}