gkd-subscription/package.json

74 lines
1.9 KiB
JSON
Raw Normal View History

2023-07-04 10:39:26 +08:00
{
"name": "@gkd-kit/subscription",
"type": "module",
2023-11-14 21:26:31 +08:00
"version": "1.161.0",
2023-07-04 10:39:26 +08:00
"main": "./dist/gkd.json",
2023-07-09 23:24:35 +08:00
"unpkg": "./dist/gkd.json",
"jsdelivr": "./dist/gkd.json",
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": {
2023-09-04 17:00:31 +08:00
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
2023-10-16 17:26:50 +08:00
"@commitlint/types": "^17.4.4",
2023-09-29 21:10:44 +08:00
"@gkd-kit/selector": "0.0.14",
2023-08-11 20:19:30 +08:00
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
2023-09-04 17:00:31 +08:00
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
2023-08-11 20:19:30 +08:00
"dayjs": "^1.11.9",
2023-09-04 17:00:31 +08:00
"eslint": "^8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-define-config": "1.23.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
2023-07-04 10:39:26 +08:00
"lodash": "^4.17.21",
2023-09-04 17:00:31 +08:00
"picocolors": "^1.0.0",
2023-09-22 16:33:01 +08:00
"pinyin-pro": "3.16.6",
2023-08-11 20:19:30 +08:00
"prettier": "^3.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
2023-09-04 17:00:31 +08:00
"undici": "^5.23.0"
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-08-11 20:19:30 +08:00
"node": "20.5.0"
2023-09-04 14:52:25 +08:00
},
2023-09-04 17:00:31 +08:00
"packageManager": "pnpm@8.7.1",
"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
}