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

54 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@logto/shared",
2022-10-19 03:28:21 -05:00
"version": "1.0.0-beta.12",
"main": "lib/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"files": [
"lib"
],
2022-10-19 02:10:50 -05:00
"publishConfig": {
"access": "public"
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
"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",
"test": "jest",
"test:ci": "jest"
},
"devDependencies": {
"@silverhand/eslint-config": "1.2.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",
2022-10-13 01:39:09 -05:00
"@types/node": "^16.0.0",
"eslint": "^8.21.0",
2022-10-14 01:57:27 -05:00
"jest": "^29.1.2",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"engines": {
"node": "^16.0.0"
},
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"@typescript-eslint/ban-types": "off"
}
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
2022-10-19 03:28:21 -05:00
"@logto/schemas": "^1.0.0-beta.12",
2022-10-10 03:28:20 -05:00
"@silverhand/essentials": "^1.3.0",
"dayjs": "^1.10.5",
2022-10-11 05:27:05 -05:00
"find-up": "^5.0.0",
"nanoid": "^3.3.4",
"slonik": "^30.0.0"
}
}