-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 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
31
32
33
34
35
36
37
{
"name": "@root/http",
"private": true,
"packageManager": "yarn@4.13.0",
"type": "module",
"version": "1.0.0",
"workspaces": [
"external/*",
"packages/*"
],
"license": "MIT",
"scripts": {
"lint": "eslint --cache",
"build": "yarn yakumo esbuild && yarn yakumo tsc",
"test": "yarn yakumo test --import tsx",
"test:text": "shx rm -rf coverage && c8 -r text yarn test",
"test:json": "shx rm -rf coverage && c8 -r json yarn test",
"test:html": "shx rm -rf coverage && c8 -r html yarn test"
},
"devDependencies": {
"@cordisjs/eslint-config": "^1.1.1",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^7.1.8",
"@types/node": "^25.3.5",
"c8": "^10.1.3",
"chai": "^5.3.3",
"chai-as-promised": "^7.1.2",
"esbuild": "^0.28.0",
"eslint": "^8.57.1",
"shx": "^0.4.0",
"tsx": "npm:@cordiverse/tsx@4.19.3-fix.3",
"typescript": "^5.9.3",
"yakumo": "^3.1.1",
"yakumo-esbuild": "^3.0.1",
"yakumo-tsc": "^3.0.1"
}
}