-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "@root/wordle",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"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 --ext .tsx,.ts,.js .",
"format": "prettier --write .",
"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": {
"@cordisjs/vitepress": "^3.2.7",
"@hamster-bot/eslint-config": "^1.0.5",
"@koishijs/plugin-database-memory": "^3.0.0",
"@koishijs/plugin-mock": "^2.6.6",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.14.1",
"c8": "^10.1.2",
"chai": "^5.1.0",
"esbuild": "^0.23.1",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.3.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest-mock": "^29.7.0",
"koishi": "^4.17.2",
"koishi-plugin-puppeteer": "^3.8.2",
"mocha": "^10.5.2",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"shx": "^0.3.4",
"typescript": "^5.4.2",
"vitepress": "^1.2.3",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.26",
"yakumo-esbuild-yaml": "^0.3.1",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.10",
"yakumo-publish-sync": "^0.3.3",
"yakumo-tsc": "^0.3.12",
"yakumo-upgrade": "^0.3.6",
"yakumo-version": "^0.3.4",
"yml-register": "^1.2.5"
}
}