-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 854 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 854 Bytes
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
{
"name": "pclce-web",
"private": true,
"version": "4.0.0",
"type": "module",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,mts,vue,js,jsx,tsx}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"markdown-it": "^14.1.1",
"vue": "^3.5.30"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@mdit/plugin-figure": "^0.23.1",
"@theojs/lumen": "^6.4.5",
"@types/node": "^25.5.0",
"colorthief": "^3.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"sharp": "^0.34.5",
"typescript": "~5.9.3",
"vitepress": "2.0.0-alpha.17"
}
}