-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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
74
75
{
"name": "@root/nonebot",
"version": "0.0.0",
"private": true,
"workspaces": [
"test",
"packages/*",
"plugins/*"
],
"packageManager": "yarn@1.22.19",
"license": "MIT",
"scripts": {
"setup": "node -r esbuild-register scripts/setup",
"build": "yakumo build",
"nbp:build": "yakumo nbp",
"nbp:pack": "yakumo nbp-pack",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
"start": "koishi start test",
"dev": "cross-env NODE_ENV=development koishi start test -r esbuild-register -r yml-register",
"lint": "eslint packages plugins --ext=ts --cache",
"test": "yakumo mocha -r esbuild-register -r yml-register",
"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": {
"@koishijs/eslint-config": "^1.0.2",
"@koishijs/vitepress": "^2.2.0",
"@koishijs/client": "^5.9.3",
"@koishijs/plugin-console": "^5.9.3",
"@koishijs/plugin-help": "^2.2.3",
"@koishijs/plugin-hmr": "^1.2.0",
"@koishijs/plugin-sandbox": "^3.1.4",
"@types/chai": "^4.3.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.14",
"@types/tar": "^6.1.5",
"@types/unbzip2-stream": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"c8": "^7.13.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"esbuild": "^0.14.54",
"esbuild-register": "^3.4.2",
"eslint": "^8.41.0",
"eslint-plugin-mocha": "^10.1.0",
"jest-mock": "^28.1.3",
"koishi": "^4.13.0",
"koishi-plugin-puppeteer": "^3.5.0",
"mocha": "^9.2.2",
"sass": "^1.62.1",
"shx": "^0.3.4",
"tar": "^6.1.15",
"typescript": "^5.0.4",
"unbzip2-stream": "^1.4.3",
"vitepress": "1.0.0-alpha.73",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.22",
"yakumo-esbuild-yaml": "^0.3.1",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.4",
"yakumo-publish-sync": "^0.3.2",
"yakumo-tsc": "^0.3.9",
"yakumo-upgrade": "^0.3.3",
"yakumo-version": "^0.3.4",
"yml-register": "^1.1.0"
}
}