-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.4 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
{
"name": "@oreorebot2/common",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"start": "bun run --cwd packages/bot start",
"build:bot": "bun run --cwd packages/bot build",
"build:docs": "bun run --cwd packages/docs build",
"dev:bot": "bun run --cwd packages/bot dev",
"dev:docs": "bun run --cwd packages/docs dev",
"lint:bot": "bun run --cwd packages/bot lint",
"lint:docs": "bun run --cwd packages/docs lint",
"format:bot": "bun run --cwd packages/bot format",
"format:docs": "bun run --cwd packages/docs format",
"test": "bun run --cwd packages/bot test",
"coverage": "bun run --cwd packages/bot coverage",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/bun": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-tsdoc": "^0.3.0",
"globals": "^15.9.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "5.6.3"
},
"workspaces": ["packages/*"]
}