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
51 lines (51 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "markmap",
"private": true,
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@unocss/postcss": "^0.65.3",
"autoprefixer": "^10.4.20",
"del-cli": "^6.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"postcss-calc": "^10.0.2",
"postcss-nested": "^7.0.2",
"prettier": "^3.4.2",
"read-package-up": "^11.0.0",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"unocss": "^0.65.3",
"vite": "^6.0.5",
"vitest": "^2.1.8"
},
"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"
]
}
}