-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.27 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
41
42
43
{
"name": "@root/cordis-webui",
"private": true,
"packageManager": "yarn@4.14.1",
"type": "module",
"version": "1.0.0",
"workspaces": [
"external/*",
"external/*/external/*",
"external/*/packages/*",
"packages/*",
"plugins/*"
],
"license": "MIT",
"scripts": {
"build": "yakumo --import tsx build",
"lint": "eslint --cache",
"dev": "yarn workspace @cordisjs/online dev",
"serve": "node --import tsx packages/online/src/serve",
"test": "yakumo vitest --import tsx",
"test:text": "shx rm -rf coverage && yarn test --coverage --coverage.reporter text",
"test:json": "shx rm -rf coverage && yarn test --coverage --coverage.reporter json",
"test:html": "shx rm -rf coverage && yarn test --coverage --coverage.reporter html"
},
"devDependencies": {
"@cordisjs/eslint-config": "^1.1.1",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.6",
"esbuild": "^0.28.0",
"eslint": "^8.57.1",
"happy-dom": "^20.9.0",
"shx": "^0.4.0",
"tsx": "npm:@cordiverse/tsx@4.19.3-fix.3",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.5",
"yakumo": "^3.2.1",
"yakumo-esbuild": "^3.0.2",
"yakumo-tsc": "^3.0.1",
"yakumo-vitest": "^1.3.3"
}
}