forked from markmap/markmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "markmap",
"private": true,
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^24.0.1",
"@unocss/postcss": "^66.2.0",
"autoprefixer": "^10.4.21",
"del-cli": "^6.0.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lerna": "^8.2.2",
"lint-staged": "^16.1.0",
"postcss": "^8.5.5",
"postcss-calc": "^10.1.1",
"postcss-nested": "^7.0.2",
"prettier": "^3.5.3",
"read-package-up": "^11.0.0",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"unocss": "^66.2.0",
"vite": "^6.3.5",
"vitest": "^3.2.3"
},
"scripts": {
"prepare": "husky || true",
"build": "pnpm lint && pnpm clean && pnpm build:types && pnpm build:js && pnpm test",
"lint": "eslint && prettier --check packages/*/src",
"lint:fix": "eslint --fix && prettier --write packages/*/src",
"test": "vitest --run",
"clean": "pnpm -r clean",
"build:types": "pnpm -r build:types",
"build:js": "pnpm -r build:js",
"build:docs": "typedoc --out api --titleLink / --name markmap"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}