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

95 lines
2.6 KiB
JSON
Raw Normal View History

2021-06-22 06:49:19 -05:00
{
"name": "@logto/schemas",
2023-12-06 03:13:56 -05:00
"version": "1.12.0",
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": {
"node": "^20.9.0"
2021-06-22 06:49:19 -05:00
},
"devDependencies": {
"@silverhand/eslint-config": "5.0.0",
2023-09-02 13:11:22 -05:00
"@silverhand/essentials": "^2.8.4",
"@silverhand/ts-config": "5.0.0",
2023-02-12 05:43:02 -05:00
"@types/inquirer": "^9.0.0",
2023-03-07 01:54:57 -05:00
"@types/jest": "^29.4.0",
"@types/node": "^20.9.5",
"@types/pluralize": "^0.0.33",
"camelcase": "^8.0.0",
"chalk": "^5.0.0",
"eslint": "^8.44.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
2021-06-23 08:23:17 -05:00
"pluralize": "^8.0.0",
"prettier": "^3.0.0",
2023-01-19 07:27:01 -05:00
"roarr": "^7.11.0",
"slonik": "^30.0.0",
2023-01-19 07:27:01 -05:00
"slonik-sql-tag-raw": "^1.1.4",
"typescript": "^5.3.3"
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": {
2023-11-03 00:14:52 -05:00
"@logto/connector-kit": "workspace:^2.0.0",
2023-12-06 03:13:56 -05:00
"@logto/core-kit": "workspace:^2.2.1",
"@logto/language-kit": "workspace:^1.0.0",
2023-12-06 03:13:56 -05:00
"@logto/phrases": "workspace:^1.8.0",
"@logto/phrases-experience": "workspace:^1.5.0",
2023-10-07 00:39:33 -05:00
"@logto/shared": "workspace:^3.0.0",
"@withtyped/server": "^0.12.9"
},
"peerDependencies": {
"zod": "^3.22.4"
}
2021-06-22 06:49:19 -05:00
}