-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.43 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
{
"name": "token-goat",
"version": "2.6.29",
"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",
"typecheck:tests": "tsc -p tsconfig.tests.json --noEmit",
"test": "vitest run",
"test:guards": "vitest run tests/guards",
"test:matrix": "vitest run tests/command_matrix_e2e",
"test:watch": "vitest",
"test:vscode-extension": "npm --prefix vscode-extension test",
"lint": "eslint src tests vscode-extension/src vscode-extension/tests",
"typecheck:vscode-extension": "npm --prefix vscode-extension run compile",
"typecheck:vscode-extension:tests": "npm --prefix vscode-extension run typecheck:tests",
"dev": "tsx src/main.ts",
"prepare": "node scripts/install-git-hooks.mjs"
},
"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": ">=22.0.0"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"commander": "^12.1.0",
"csv-parse": "^7.0.1",
"html-to-text": "^10.0.0",
"js-yaml": "^5.2.1",
"jsonc-parser": "^3.3.1",
"smol-toml": "^1.7.0",
"zod": "^4.4.3"
},
"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",
"lefthook": "^2.1.10",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.10"
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@xenova/transformers": "^2.17.2",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.9.3",
"fflate": "^0.8.3",
"pdfjs-dist": "^6.1.200",
"puppeteer-core": "^23.0.0",
"sharp": "^0.33.5",
"sqlite-vec": "^0.1.9",
"tesseract.js": "^6.0.1",
"tree-sitter": "^0.22.4",
"tree-sitter-c": "^0.23.0",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-go": "^0.23.0",
"tree-sitter-java": "^0.23.0",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.6",
"tree-sitter-ruby": "^0.23.0",
"tree-sitter-rust": "^0.23.0",
"tree-sitter-typescript": "^0.23.2",
"typescript": "^6.0.3"
},
"allowScripts": {
"esbuild@0.24.2": true,
"esbuild@0.28.1": true,
"sharp@0.32.6": true,
"sharp@0.33.5": true,
"better-sqlite3@11.10.0": true,
"lefthook@2.1.10": true,
"protobufjs@6.11.6": true,
"tesseract.js@6.0.1": true,
"tree-sitter@0.22.4": true,
"tree-sitter-c@0.23.6": true,
"tree-sitter-cpp@0.23.4": true,
"tree-sitter-go@0.23.4": true,
"tree-sitter-java@0.23.5": true,
"tree-sitter-javascript@0.23.1": true,
"tree-sitter-python@0.23.6": true,
"tree-sitter-ruby@0.23.1": true,
"tree-sitter-rust@0.23.3": true,
"tree-sitter-typescript@0.23.2": true
}
}