-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
56
57
58
59
60
{
"name": "claude-code-plugin",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"check": "eslint && oxfmt --check . && turbo run check --filter='./apps/*' --filter='./packages/*' --filter='./plugins/*'",
"test": "turbo run test",
"test:coverage": "turbo run test -- --coverage",
"typecheck": "turbo run typecheck",
"prepare": "husky",
"check:docs": "docs-tools check",
"docs": "docs-tools gen",
"check:plugin-list": "docs-tools check-list",
"hooks:plugin-list-sync": "docs-tools gen",
"knip": "knip",
"check:lockfile": "repository-lint check-lockfile"
},
"dependencies": {
"@r_masseater/cc-plugin-lib": "workspace:*",
"cc-hooks-ts": "^2.1.94"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/json": "^0.14.0",
"@feature-sliced/steiger-plugin": "^0.5.7",
"@r_masseater/doc-engine": "workspace:*",
"@r_masseater/ops-harbor": "workspace:*",
"@repo/repository-lint": "workspace:*",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.4",
"@typescript/native-preview": "latest",
"eslint": "^10.0.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"knip": "^6.3.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.57.0",
"steiger": "^0.5.11",
"tailwindcss": "^4.2.2",
"turbo": "^2.8.20"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,cts,mts}": [
"eslint --fix",
"oxfmt --no-error-on-unmatched-pattern --write"
],
"*.json": [
"oxfmt --no-error-on-unmatched-pattern --write"
]
},
"packageManager": "bun@1.3.4"
}