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-12-03 17:48:51 +08:00
"version": "1.171.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": {
2023-11-14 22:07:11 +08:00
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/types": "^17.8.1",
2023-12-01 11:32:40 +08:00
"@gkd-kit/selector": "0.0.16",
2023-11-14 22:07:11 +08:00
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"dayjs": "^1.11.10",
"eslint": "^8.53.0",
2023-09-04 17:00:31 +08:00
"eslint-config-prettier": "9.0.0",
2023-11-14 22:07:11 +08:00
"eslint-define-config": "1.24.1",
2023-09-04 17:00:31 +08:00
"husky": "^8.0.3",
2023-12-01 11:32:40 +08:00
"json5": "^2.2.3",
2023-11-14 22:07:11 +08:00
"lint-staged": "^15.1.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",
2023-11-14 22:07:11 +08:00
"pinyin-pro": "3.18.1",
"prettier": "^3.1.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
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
}