-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "tokenmiser",
"version": "1.0.0",
"description": "Slash Claude Code token usage by 40–70%. Generates a compact codebase index, smart ignore rules, and optimized CLAUDE.md — so Claude navigates straight to the right file instead of reading everything.",
"main": "dist/index.js",
"bin": {
"tokenmiser": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "tsx src/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"tokens",
"context",
"token-optimizer",
"ai",
"developer-tools",
"codebase-index"
],
"author": "phlx0",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"glob": "^10.4.5",
"ignore": "^7.0.5",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^25.5.2",
"prettier": "^3.8.1",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/phlx0/tokenmiser.git"
},
"homepage": "https://github.com/phlx0/tokenmiser#readme",
"bugs": {
"url": "https://github.com/phlx0/tokenmiser/issues"
}
}