-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"name": "taskgrade",
"version": "0.1.0",
"description": "Local task classification for coding-agent model selection.",
"type": "module",
"license": "Apache-2.0",
"author": "Eddy Hidayat",
"homepage": "https://github.com/eddyvlad/taskgrade#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eddyvlad/taskgrade.git"
},
"bugs": {
"url": "https://github.com/eddyvlad/taskgrade/issues"
},
"keywords": [
"mcp",
"ollama",
"task-classification",
"model-selection",
"coding-agents",
"local-first"
],
"bin": {
"taskgrade": "dist/cli.js"
},
"files": [
"dist",
"policies",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod 755 dist/cli.js dist/evaluate.js",
"check": "biome check . && npm run typecheck",
"check:fix": "biome check --write . && npm run typecheck",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify": "npm run check && npm test && npm run build",
"pack:check": "npm run verify && npm pack --dry-run",
"changelog:preview": "changelogen --output",
"release:patch": "npm run verify && changelogen --release --patch --push --clean --noAuthors",
"release:minor": "npm run verify && changelogen --release --minor --push --clean --noAuthors",
"release:major": "npm run verify && changelogen --release --major --push --clean --noAuthors"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@types/node": "24.10.1",
"changelogen": "0.6.2",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}