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

65 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@logto/shared",
2023-02-02 09:18:08 -05:00
"version": "1.0.0-rc.0",
"main": "lib/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
2022-11-20 22:24:02 -05:00
"type": "module",
"files": [
"lib"
],
2022-12-12 00:43:23 -05:00
"exports": {
".": {
"import": "./lib/index.js"
},
"./esm": {
"import": "./lib/esm/index.js"
}
},
2022-10-19 02:10:50 -05:00
"publishConfig": {
"access": "public"
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
2022-12-11 07:07:21 -05:00
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
"lint": "eslint --ext .ts src",
2022-10-10 10:44:02 -05:00
"lint:report": "pnpm lint --format json --output-file report.json",
"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"
},
"devDependencies": {
"@logto/connector-kit": "workspace:*",
"@logto/core-kit": "workspace:*",
2023-02-16 10:49:03 -05:00
"@silverhand/eslint-config": "2.0.1",
2023-02-17 00:41:05 -05:00
"@silverhand/ts-config": "2.0.3",
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",
2023-02-16 10:49:03 -05:00
"eslint": "^8.34.0",
2022-10-14 01:57:27 -05:00
"jest": "^29.1.2",
"lint-staged": "^13.0.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
2022-12-12 08:15:09 -05:00
"typescript": "^4.9.4"
},
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
},
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"@typescript-eslint/ban-types": "off"
}
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@logto/schemas": "workspace:*",
2023-02-18 00:34:52 -05:00
"@silverhand/essentials": "2.2.0",
2022-12-13 05:11:51 -05:00
"find-up": "^6.3.0",
"nanoid": "^4.0.0",
"slonik": "^30.0.0"
}
}