-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.88 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.88 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
{
"name": "ganko-monorepo",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --cwd packages/shared build && bun run --cwd packages/ganko build && bun run --cwd packages/lsp build && bun run --cwd packages/vscode build",
"smoke:pack:ganko": "bun run scripts/smoke-test-ganko-package.ts",
"test": "bun run --cwd packages/ganko test && bun run --cwd packages/lsp test",
"tsc": "bun run --cwd packages/shared tsc && bun run --cwd packages/ganko tsc && bun run --cwd packages/lsp tsc && bun run --cwd packages/vscode tsc",
"lint": "eslint --max-warnings=0",
"ci": "bun run build && bun run smoke:pack:ganko && bun run tsc && bun run lint && bun run test && bun run --cwd packages/ganko generate:check",
"clean": "bun -e \"import { readdir, rm } from 'node:fs/promises'; import { resolve } from 'node:path'; const root = process.cwd(); const entries = await readdir(resolve(root, 'packages'), { withFileTypes: true }); for (const entry of entries) { if (!entry.isDirectory()) continue; await rm(resolve(root, 'packages', entry.name, 'dist'), { recursive: true, force: true }); }\"",
"rebuild": "bun run clean && bun install && bun run build",
"package": "bun run build && bun run --cwd packages/vscode package",
"version:bump": "bun run scripts/version-bump.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.10",
"@types/node": "25.5.0",
"@typescript-eslint/utils": "^8.57.2",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"@drskillissue/ganko": "workspace:^",
"tsup": "^8.5.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.0",
"zod": "^4.3.6"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "bun@1.3.10"
}