-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.85 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.85 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "typegrade",
"version": "0.14.1",
"description": "TypeScript type-safety and precision analyzer for the AI agent era",
"keywords": [
"ai-agents",
"analyzer",
"linter",
"quality",
"type-safety",
"types",
"typescript"
],
"homepage": "https://github.com/ferc/typegrade#readme",
"bugs": {
"url": "https://github.com/ferc/typegrade/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ferc/typegrade.git"
},
"bin": {
"intent": "./bin/intent.js",
"typegrade": "./dist/bin.js"
},
"files": [
"dist",
"skills",
"bin",
"!skills/_artifacts",
"!dist/*.map",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "oxlint -c .oxlintrc.json --tsconfig tsconfig.json --vitest-plugin src/ test/",
"lint:fix": "oxlint -c .oxlintrc.json --tsconfig tsconfig.json --vitest-plugin --fix src/ test/",
"format": "oxfmt --write src/ test/",
"format:check": "oxfmt --check src/ test/",
"prepack": "pnpm build && pnpm test:run",
"pack:check": "pnpm pack --dry-run",
"benchmark": "tsx benchmarks/run.ts",
"benchmark:train": "tsx benchmarks/run.ts",
"benchmark:holdout": "tsx benchmarks/run.ts --holdout",
"benchmark:eval": "tsx benchmarks/run.ts --eval",
"benchmark:pool": "tsx benchmarks/run.ts --eval --count",
"benchmark:random": "tsx benchmarks/run.ts --count 30",
"benchmark:random:multi": "tsx benchmarks/multi-seed.ts",
"benchmark:eval:all": "tsx benchmarks/run.ts --eval && tsx benchmarks/multi-seed.ts && tsx benchmarks/judge.ts && tsx benchmarks/gate.ts --eval",
"benchmark:all": "tsx benchmarks/run.ts && tsx benchmarks/run.ts --holdout && tsx benchmarks/gate.ts && (tsx benchmarks/run.ts --eval && tsx benchmarks/multi-seed.ts && tsx benchmarks/judge.ts && tsx benchmarks/gate.ts --eval || echo 'Eval gates reported issues (non-blocking)')",
"benchmark:calibrate": "tsx benchmarks/calibrate.ts",
"benchmark:judge": "tsx benchmarks/judge.ts",
"benchmark:optimize": "tsx benchmarks/optimize.ts",
"benchmark:gate": "tsx benchmarks/gate.ts",
"benchmark:report": "tsx benchmarks/calibrate.ts",
"benchmark:shadow": "tsx benchmarks/shadow-latest.ts",
"benchmark:source": "tsx benchmarks/source-latest.ts",
"benchmark:monorepo": "tsx benchmarks/monorepo-latest.ts",
"benchmark:release": "pnpm benchmark:train && pnpm benchmark:holdout && pnpm benchmark:shadow && pnpm benchmark:source && pnpm benchmark:monorepo && pnpm gate:release",
"benchmark:validate": "tsx benchmarks/run.ts --validate-manifest",
"benchmark:audit": "tsx benchmarks/run.ts --validate-manifest && pnpm benchmark:train && pnpm gate:train",
"gate:train": "tsx benchmarks/gate.ts",
"gate:holdout": "tsx benchmarks/gate.ts --holdout",
"gate:eval": "tsx benchmarks/gate.ts --eval",
"gate:shadow": "tsx benchmarks/gate.ts --shadow",
"gate:source": "tsx benchmarks/gate.ts --source",
"gate:monorepo": "tsx benchmarks/gate.ts --monorepo",
"gate:release": "tsx benchmarks/gate.ts --release",
"tune": "tsx benchmarks/tune.ts",
"perf": "tsx perf/run.ts all",
"perf:cli": "tsx perf/run.ts cli",
"perf:score": "tsx perf/run.ts score",
"perf:benchmark": "tsx perf/run.ts benchmark",
"perf:ci": "tsx perf/run.ts all --ci",
"release:dry-run": "tsx node_modules/.bin/semantic-release --dry-run",
"intent:validate": "npx @tanstack/intent validate",
"intent:stale": "npx @tanstack/intent stale",
"intent:list": "npx @tanstack/intent list",
"intent:scaffold": "npx @tanstack/intent scaffold",
"intent:smoke": "npm pack --dry-run 2>&1 | grep skills/"
},
"dependencies": {
"commander": "^14.0.3",
"picocolors": "^1.1.1",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tanstack/intent": "^0.0.14",
"@types/node": "^25.3.5",
"conventional-changelog-conventionalcommits": "^9.3.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.13.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}