-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "@root/dialogue",
"version": "1.0.0",
"private": true,
"workspaces": [
"external/*",
"packages/*"
],
"license": "MIT",
"scripts": {
"build": "yakumo build",
"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",
"lint": "eslint packages --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.4",
"@koishijs/plugin-database-memory": "^2.3.6",
"@koishijs/plugin-mock": "^2.6.4",
"@koishijs/vitepress": "^3.0.5",
"@sinonjs/fake-timers": "^6.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^20.8.9",
"@types/sinonjs__fake-timers": "^6.0.4",
"c8": "^7.14.0",
"esbuild": "^0.18.20",
"esbuild-register": "^3.5.0",
"eslint": "^8.52.0",
"eslint-plugin-mocha": "^10.2.0",
"jest-mock": "^28.1.3",
"mocha": "^9.2.2",
"sass": "^1.69.5",
"shx": "^0.3.4",
"typescript": "^5.2.2",
"yml-register": "^1.1.0",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.26",
"yakumo-esbuild-yaml": "^0.3.1",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.5",
"yakumo-publish-sync": "^0.3.3",
"yakumo-tsc": "^0.3.12",
"yakumo-upgrade": "^0.3.4",
"yakumo-version": "^0.3.2",
"vitepress": "1.0.0-rc.24"
}
}