-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 KB
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
{
"name": "documents",
"version": "1.0.0",
"packageManager": "pnpm@9.0.0",
"description": "",
"author": "",
"license": "ISC",
"keywords": [],
"main": "index.js",
"engines": {
"pnpm": "^9.0.0"
},
"scripts": {
"test": "vitest",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint:markdown": "markdownlint-cli2 --fix --config .markdownlint-cli2.jsonc",
"lint:eslint": "eslint --fix",
"lint": "pnpm run '/^lint:.*/'",
"ci:lint:markdown": "markdownlint-cli2 --config .markdownlint-cli2.jsonc",
"ci:lint:eslint": "eslint",
"ci:lint": "pnpm run '/^ci:lint:.*/'",
"prepare": "husky"
},
"dependencies": {
"dayjs": "^1.11.13",
"lint-staged": "^16.1.2",
"pinyin": "4.0.0-alpha.3",
"vue": "^3.5.17"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@braintree/sanitize-url": "^7.1.1",
"@types/node": "^22.15.32",
"@types/pinyin": "^2.10.2",
"cytoscape": "^3.33.1",
"cytoscape-cose-bilkent": "^4.1.0",
"debug": "^4.4.3",
"eslint": "^9.29.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.18.1",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.6"
},
"lint-staged": {
"*.md": "pnpm lint:markdown",
"*.{js,ts,mjs,cjs,vue,json}": "pnpm lint:eslint"
},
"volta": {
"node": "22.21.1"
}
}