-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.21 KB
/
package.json
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
{
"name": "@root/schemastery",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"build:js": "yakumo esbuild core",
"build:dts": "yakumo tsc core",
"build": "yarn build:js && yarn build:dts",
"dev": "vitepress dev docs --open",
"build:docs": "vitepress build docs",
"serve": "serve docs/.vitepress/dist",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
"test": "yakumo test -r esbuild-register core",
"test:json": "shx rm -rf coverage && c8 -r json yarn test",
"test:html": "shx rm -rf coverage && c8 -r html yarn test",
"test:text": "shx rm -rf coverage && c8 -r text yarn test"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/node": "^20.11.30",
"c8": "^7.14.0",
"chai": "^4.4.1",
"element-plus": "2.7.3",
"esbuild": "^0.18.20",
"esbuild-register": "^3.5.0",
"marked-vue": "^1.3.0",
"serve": "^13.0.4",
"shx": "^0.3.4",
"typescript": "^5.4.3",
"vitepress": "1.2.2",
"yakumo": "^1.0.0-beta.16",
"yakumo-esbuild": "^1.0.0-beta.6",
"yakumo-tsc": "^1.0.0-beta.4"
}
}