-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
{
"name": "tsforge",
"type": "module",
"version": "0.21.0",
"license": "MIT",
"description": "TypeScript coding harness with a deterministic gate, stack-aware guardrails, and stream-level correction.",
"scripts": {
"tsforge": "bun --cwd packages/core ./src/cli.ts",
"typecheck": "tsc -p packages/core/tsconfig.json",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"format": "prettier --write \"packages/**/*.ts\"",
"format:check": "prettier --check \"packages/**/*.ts\"",
"test": "bun test packages",
"check:bun": "bun packages/core/scripts/check-bun-version.ts",
"validate": "bun run check:bun && bun run typecheck && bun run lint && bun run format:check && bun run test",
"rules:build": "bun packages/core/scripts/build-rules-md.ts",
"rules:docs": "bun packages/core/scripts/build-rule-docs.ts",
"eval:sweep": "bun packages/core/scripts/sweep.ts",
"eval:spec": "bun packages/core/scripts/eval-spec.ts",
"eval:benchmark": "bun packages/core/scripts/edit-benchmark.ts",
"eval:report": "bun packages/core/scripts/sweep-report.ts"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=24.0.0",
"bun": "1.3.14"
},
"devDependencies": {
"@ast-grep/cli": "^0.43.0",
"@axe-core/playwright": "^4.11.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@eslint/js": "10.0.1",
"@happy-dom/global-registrator": "^20.10.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "8.60.0",
"@typescript-eslint/utils": "8.60.0",
"bun-types": "1.3.14",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-better-tailwindcss": "^4.5.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "17.6.0",
"playwright": "^1.60.0",
"prettier": "3.8.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0"
},
"overrides": {
"@typescript-eslint/utils": "8.60.0",
"esbuild": "^0.28.1",
"ws": "^8.21.0"
}
}