-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.97 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
{
"name": "token-goat",
"version": "2.2.4",
"description": "Surgical token-reduction companion for Claude Code and other AI coding agents",
"type": "module",
"main": "./dist/token-goat.mjs",
"bin": {
"token-goat": "./dist/token-goat.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/DFKHelper/token-goat.git"
},
"homepage": "https://github.com/DFKHelper/token-goat#readme",
"bugs": {
"url": "https://github.com/DFKHelper/token-goat/issues"
},
"scripts": {
"build": "node esbuild.config.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:guards": "vitest run tests/guards",
"test:matrix": "vitest run tests/command_matrix_e2e.test.ts",
"test:watch": "vitest",
"lint": "eslint src tests",
"dev": "tsx src/main.ts"
},
"contributors": [
{
"name": "eSaadster",
"url": "https://github.com/eSaadster/pi-token-goat"
}
],
"keywords": [
"claude",
"claude-code",
"token",
"ai",
"coding-assistant",
"token-reduction",
"llm"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"commander": "^12.1.0",
"sharp": "^0.33.5",
"smol-toml": "^1.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"eslint": "^10.5.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.62.0",
"vitest": "^2.1.0"
},
"optionalDependencies": {
"@xenova/transformers": "^2.17.2",
"tree-sitter": "^0.22.4",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.6",
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-go": "^0.23.0",
"tree-sitter-rust": "^0.23.0",
"tree-sitter-ruby": "^0.23.0",
"tree-sitter-java": "^0.23.0",
"tree-sitter-c": "^0.23.0"
}
}