-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 KB
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
{
"name": "@root/schemastery",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "yarn@4.13.0",
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"yakumo": "NODE_OPTIONS=\"--import tsx --import yml-register\" node_modules/yakumo/lib/cli.js",
"build:js": "yarn yakumo esbuild core",
"build:dts": "yarn 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",
"test": "yarn 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/node": "^25.0.9",
"c8": "^7.14.0",
"esbuild": "^0.28.0",
"esbuild-register": "^3.6.0",
"marked-vue": "^1.3.0",
"serve": "^13.0.4",
"shx": "^0.4.0",
"tsx": "npm:@cordiverse/tsx@4.19.3-fix.3",
"typescript": "^5.6.2",
"vitepress": "1.2.2",
"yakumo": "^3.1.1",
"yakumo-esbuild": "^3.0.1",
"yakumo-tsc": "^3.0.1",
"yml-register": "^1.2.5"
}
}