-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 799 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 799 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
{
"private": true,
"type": "module",
"dependencies": {
"vue": "catalog:"
},
"devDependencies": {
"@tsconfig/node24": "catalog:",
"@types/node": "catalog:",
"@vue/tsconfig": "catalog:",
"npm-run-all2": "catalog:",
"rimraf": "catalog:",
"typescript": "catalog:",
"vitepress": "catalog:",
"vue-tsc": "catalog:"
},
"scripts": {
"clean": "rimraf dist .vitepress/cache",
"dev": "vitepress dev .",
"type-check:code": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"type-check:config": "vue-tsc --noEmit -p tsconfig.node.json --composite false",
"type-check": "run-p -c type-check:*",
"build:only": "vitepress build .",
"build": "run-p -c type-check \"build:only {@}\" --",
"preview": "vitepress preview ."
}
}