-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 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
{
"name": "ansidev-blog",
"description": "ansidev's blog",
"author": "Le Minh Tri <ansidev@gmail.com>",
"license": "MIT",
"version": "3.0.0",
"keywords": [
"ansidev",
"blog",
"vitepress"
],
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.1",
"scripts": {
"lint:check": "biome check",
"lint": "biome check --write",
"dev": "vitepress dev",
"build": "NODE_ENV=production vitepress build",
"preview": "NODE_ENV=production vitepress preview"
},
"devDependencies": {
"@ansidev-oss/vitepress-theme-ansidev": "^1.0.12",
"@biomejs/biome": "^2.4.4",
"vitepress": "2.0.0-alpha.16",
"vitepress-plugin-rss": "^0.4.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}