-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 KB
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/yesimbot",
"private": true,
"homepage": "github:HydroGest/YesImBot",
"license": "MIT",
"contributors": [
"HydroGest <2445691453@qq.com>",
"Dispure <3116716016@qq.com>",
"MiaowFISH <1293865264@qq.com>",
"Touch-Night <1762918301@qq.com>"
],
"workspaces": [
"core",
"packages/*",
"plugins/*",
"providers/*",
"test"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rimraf .turbo",
"fmt": "turbo run fmt",
"fmt:check": "yarn fmt -- --check",
"lint": "turbo run lint",
"lint:fix": "yarn lint -- --fix",
"prepare": "husky",
"pub": "turbo run pub",
"release": "node scripts/release.mjs",
"release:beta": "node scripts/release.mjs --beta",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@types/node": "^22.16.2",
"bumpp": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"pkgroll": "^2.21.4",
"rimraf": "^6.1.2",
"turbo": "^2.8.9",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,mjs,cjs,js,jsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,yml,yaml,md}": [
"oxfmt --write"
]
},
"packageManager": "yarn@4.12.0"
}