-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.01 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.01 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
{
"name": "claude-code-plugin",
"private": true,
"type": "module",
"packageManager": "bun@1.3.4",
"workspaces": ["packages/*", "plugins/*"],
"scripts": {
"build": "turbo run build",
"check": "eslint && turbo run check --filter='./packages/*' --filter='./plugins/*'",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"check:docs": "bun -e \"import{check}from'@r_masseater/doc-engine';await check()\"",
"docs": "bun -e \"import{generate}from'@r_masseater/doc-engine';await generate()\"",
"check:plugin-list": "bun -e \"import{checkList}from'@r_masseater/doc-engine';await checkList()\"",
"hooks:plugin-list-sync": "bun -e \"import{generate}from'@r_masseater/doc-engine';await generate()\""
},
"overrides": {
"typescript": "npm:@typescript/native-preview@latest"
},
"devDependencies": {
"@eslint/json": "^0.12.0",
"@r_masseater/doc-engine": "workspace:*",
"@typescript/native-preview": "latest",
"eslint": "^10.0.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"turbo": "^2.8.20"
}
}