-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.59 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
{
"name": "@oreorebot2/common",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"start": "pnpm run --filter './packages/bot' start",
"build:bot": "pnpm run --filter './packages/bot' build",
"build:docs": "pnpm run --filter './packages/docs' build",
"dev:bot": "pnpm run --filter './packages/bot' dev",
"dev:docs": "pnpm run --filter './packages/docs' dev",
"lint:bot": "pnpm run --filter './packages/bot' lint",
"lint:docs": "pnpm run --filter './packages/docs' lint",
"format:bot": "pnpm run --filter './packages/bot' format",
"format:docs": "pnpm run --filter './packages/docs' format",
"test": "pnpm run --filter './packages/bot' test",
"coverage": "pnpm run --filter './packages/bot' coverage",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.0",
"@eslint/markdown": "^8.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-tsdoc": "^0.5.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"typescript": "6.0.2"
},
"workspaces": [
"packages/*"
],
"trustedDependencies": [
"@discordjs/opus",
"esbuild",
"lmdb",
"sharp"
]
}