forked from koishijs/koishi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "koishi-workspace",
"private": true,
"workspaces": [
"docs",
"atri",
"addons",
"shiki",
"test",
"utsuho",
"packages/*"
],
"scripts": {
"atri": "yarn workspace atri",
"addons": "yarn workspace addons",
"cli": "yarn compile koishi && yarn workspace test koishi",
"build": "yarn compile && yarn dtsc",
"build:ci": "yarn compile && yarn compile && yarn compile && yarn dtsc --listEmittedFiles && yarn build:web",
"build:web": "node -r ./build/register packages/plugin-webui/build",
"dtsc": "node -r ./build/register build/dtsc",
"bump": "node -r ./build/register build/bump",
"compile": "node -r ./build/register build/compile",
"dep": "node -r ./build/register build/dep",
"docs": "yarn workspace docs",
"draft": "node -r ./build/register build/release",
"test": "mocha --require ./build/register --no-warnings --experimental-vm-modules --enable-source-maps",
"test:json": "c8 -r json yarn test",
"test:html": "rimraf coverage && c8 -r html yarn test",
"test:text": "c8 -r text yarn test",
"lint": "eslint packages/*/src/**/*.ts --fix --cache",
"pub": "node -r ./build/register build/publish",
"webui": "yarn workspace koishi-plugin-webui",
"shiki": "yarn workspace bot-shiki",
"utsuho": "yarn workspace bot-utsuho"
},
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^18.9.0",
"@sinonjs/fake-timers": "^6.0.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@types/rimraf": "^3.0.1",
"@types/semver": "^7.3.8",
"@types/sinonjs__fake-timers": "^6.0.3",
"@types/source-map-support": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"c8": "^7.8.0",
"cac": "^6.7.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"del": "^6.0.0",
"esbuild": "^0.12.19",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.3",
"jest-mock": "^27.0.6",
"json5": "^2.2.0",
"kleur": "^4.1.4",
"latest-version": "^5.1.0",
"mocha": "^9.0.3",
"nock": "^13.1.1",
"open": "^8.2.1",
"ora": "^5.4.1",
"p-map": "^4.0.0",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}