-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
73 lines (73 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@root/koishi",
"version": "1.0.0",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"docs",
"external/*",
"external/*/external/*",
"external/*/packages/*",
"external/upstream/adapter/*",
"external/upstream/database/*",
"external/upstream/server/*",
"packages/*",
"plugins/*",
"plugins/common/*",
"plugins/database/*"
],
"scripts": {
"docs": "yarn workspace @koishijs/docs",
"console": "yarn workspace @root/console",
"dialogue": "yarn workspace @root/dialogue",
"minato": "yarn workspace @root/minato",
"satori": "yarn workspace @root/satori",
"yakumo": "yarn workspace @root/yakumo",
"clean": "node -r esbuild-register build/clean",
"compile": "yakumo esbuild",
"build": "yakumo esbuild && yakumo tsc",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
"lint": "eslint packages plugins --ext=ts --cache",
"test": "yakumo mocha -r esbuild-register -r yml-register --exit",
"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"
},
"license": "MIT",
"devDependencies": {
"@cordisjs/eslint-config": "^1.1.1",
"@octokit/webhooks-types": "^7.4.0",
"@sinonjs/fake-timers": "^6.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^22.1.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@types/sinonjs__fake-timers": "^6.0.4",
"@types/source-map-support": "^0.5.10",
"c8": "^7.14.0",
"cac": "^6.7.14",
"cross-env": "^7.0.3",
"esbuild": "^0.23.0",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-mocha": "^10.4.1",
"globby": "^11.1.0",
"kleur": "^4.1.5",
"latest-version": "^5.1.0",
"mocha": "^9.2.2",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"typescript": "^5.5.3",
"yakumo": "^1.0.0-beta.18",
"yakumo-esbuild": "^1.0.0-beta.6",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.4",
"yml-register": "^1.2.5"
}
}