-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 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
{
"name": "the_quickshell_book",
"version": "1.0.0",
"private": true,
"description": "A comprehensive guide to building desktop shells with Quickshell and QML",
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"new:chapter": "tsx scripts/new-chapter.ts",
"validate:links": "tsx scripts/validate-links.ts"
},
"dependencies": {
"@heyputer/puter.js": "^2.5.4",
"vitepress": "^1.6.3"
},
"devDependencies": {
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"mermaid": "^11.6.0",
"playwright": "^1.49.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitepress-mermaid-renderer": "^1.1.27"
}
}