-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "@root/http",
"private": true,
"packageManager": "yarn@4.5.1",
"type": "module",
"version": "1.0.0",
"workspaces": [
"external/*",
"packages/*"
],
"license": "MIT",
"scripts": {
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"lint": "eslint --cache",
"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": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/node": "^20.11.30",
"c8": "^7.14.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.25.0",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"shx": "^0.3.4",
"tsx": "npm:@cordiverse/tsx@4.19.3-fix.1",
"typescript": "^5.8.2",
"yakumo": "^2.0.0-alpha.1",
"yakumo-esbuild": "^2.0.0-alpha.0",
"yakumo-tsc": "^2.0.0-alpha.1"
}
}