generated from jstarter/node-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "biliy",
"version": "0.0.1",
"description": "Bilibili command line tool, download danmaku",
"packageManager": "[email protected]",
"private": true,
"type": "module",
"scripts": {
"postinstall": "simple-git-hooks",
"build": "rollup -c && pnpm build-dts",
"build-dts": "rimraf temp && tsc -p tsconfig.build.json && rollup -c rollup.dts.config.js",
"clean": "rimraf packages/*/dist temp .eslintcache .stats",
"test": "vitest",
"check": "tsc --incremental --noEmit",
"lint": "eslint --cache --ignore-path .gitignore .",
"lint-fix": "eslint --cache --fix --ignore-path .gitignore .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"commit": "cz"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.{js,cjs,ts}": [
"eslint --fix",
"prettier --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "[email protected]:justorez/biliy.git"
},
"keywords": [
"cli",
"bilibili",
"danmaku",
"ass"
],
"author": "justorez",
"license": "MIT",
"bugs": {
"url": "[email protected]:justorez/biliy/issues"
},
"homepage": "[email protected]:justorez/biliy.git#readme",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/ui": "^1.5.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.1",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.1",
"picocolors": "^1.0.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-visualizer": "^5.12.0",
"simple-git-hooks": "^2.9.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}