gkd-subscription/package.json

74 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2023-07-04 10:39:26 +08:00
{
"name": "@gkd-kit/subscription",
"type": "module",
2024-01-28 14:37:05 +08:00
"version": "1.185.0",
2023-12-01 11:32:40 +08:00
"main": "./dist/gkd.json5",
"unpkg": "./dist/gkd.json5",
"jsdelivr": "./dist/gkd.json5",
2023-09-02 13:17:03 +08:00
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
2023-07-04 10:39:26 +08:00
"files": [
2023-08-11 20:19:30 +08:00
"./dist"
2023-07-04 10:39:26 +08:00
],
"scripts": {
2023-09-04 17:00:31 +08:00
"prepare": "husky install",
"format": "prettier --cache --write .",
"lint": "eslint --cache --fix ./**/*.{js,ts,jsx,tsx}",
2023-09-03 18:30:48 +08:00
"build": "tsc --noEmit && tsx ./scripts/build.ts",
2023-09-27 15:11:28 +08:00
"check": "tsc --noEmit && tsx ./scripts/check.ts",
"updateSubs": "tsx ./scripts/updateSubs.ts"
2023-07-04 10:39:26 +08:00
},
2023-08-11 20:19:30 +08:00
"devDependencies": {
2024-01-18 21:45:34 +08:00
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/types": "^18.4.4",
"@gkd-kit/selector": "0.0.18",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
2023-11-14 22:07:11 +08:00
"dayjs": "^1.11.10",
2024-01-18 21:45:34 +08:00
"eslint": "^8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
2023-09-04 17:00:31 +08:00
"husky": "^8.0.3",
2023-12-01 11:32:40 +08:00
"json5": "^2.2.3",
2024-01-18 21:45:34 +08:00
"lint-staged": "^15.2.0",
2023-07-04 10:39:26 +08:00
"lodash": "^4.17.21",
2023-09-04 17:00:31 +08:00
"picocolors": "^1.0.0",
2024-01-18 21:45:34 +08:00
"pinyin-pro": "3.19.2",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
2023-07-04 10:39:26 +08:00
},
2023-07-09 23:24:35 +08:00
"author": "lisonge",
"license": "MIT",
"homepage": "https://github.com/gkd-kit/subscription#readme",
"bugs": {
"url": "https://github.com/gkd-kit/subscription/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkd-kit/subscription.git"
},
2023-07-04 10:39:26 +08:00
"volta": {
2023-11-14 22:07:11 +08:00
"node": "20.9.0"
2023-09-04 14:52:25 +08:00
},
2023-11-14 22:07:11 +08:00
"packageManager": "pnpm@8.10.2",
2023-09-04 17:00:31 +08:00
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": [
"prettier --cache --write --ignore-unknown"
],
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix"
]
}
2023-07-04 10:39:26 +08:00
}