-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "@ckvv/lib",
"type": "module",
"version": "0.0.5",
"private": false,
"description": "一个轻量级的工具函数库",
"author": "chenkai",
"license": "MIT",
"homepage": "https://github.com/ckvv/lib#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ckvv/lib.git"
},
"bugs": {
"url": "https://github.com/ckvv/lib/issues"
},
"keywords": [],
"sideEffects": false,
"main": "index.js",
"scripts": {
"prepare": "husky install",
"generate": "tsx ./scripts/generate.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"build": "pnpm generate && pnpm clear && pnpm run --filter \"./packages/*\" build",
"clear": "pnpm run --filter \"./packages/*\" clear",
"docs": "typedoc --options ./typedoc.json",
"changeset": "changeset",
"version-packages": "changeset version && pnpm run lint && pnpm run build",
"release": "changeset publish --registry=https://registry.npmjs.com/"
},
"devDependencies": {
"@antfu/eslint-config": "2.21.1",
"@changesets/cli": "^2.27.6",
"@ckvv/tsconfig": "workspace:*",
"@types/node": "20.x",
"@vitest/coverage-v8": "1.6.0",
"eslint": "^9.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"rimraf": "5.0.7",
"tsx": "^4.1.1",
"typedoc": "0.26.2",
"typescript": "^5.5.2",
"vitest": "1.6.0"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,tsx,jsx,vue}": [
"eslint --fix"
]
},
"directories": {
"doc": "docs"
}
}