token-goat 2.6.30 → 2.6.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -16
- package/SECURITY.md +136 -0
- package/dist/{token-goat-hook-chunk-KNVHTGEX.mjs → token-goat-chunk-3KW5C2KQ.mjs} +1 -1
- package/dist/{token-goat-hook-chunk-7WC2H3EW.mjs → token-goat-chunk-3UOG7PSZ.mjs} +12 -3
- package/dist/{token-goat-hook-chunk-FKZ5RBT4.mjs → token-goat-chunk-4M7PSAO3.mjs} +8 -8
- package/dist/token-goat-chunk-5EXIMDHA.mjs +5113 -0
- package/dist/token-goat-chunk-DFBD2FFU.mjs +9627 -0
- package/dist/token-goat-chunk-DNEPSN3P.mjs +156 -0
- package/dist/token-goat-chunk-GWZJ5SI2.mjs +13684 -0
- package/dist/token-goat-chunk-N53GXI2Z.mjs +9660 -0
- package/dist/token-goat-chunk-O7TGKV5I.mjs +901 -0
- package/dist/token-goat-chunk-RD6O3PJU.mjs +15606 -0
- package/dist/token-goat-chunk-TBCLQTPG.mjs +24 -0
- package/dist/token-goat-chunk-W3MX4LQV.mjs +707 -0
- package/dist/token-goat-chunk-X5OPORR4.mjs +18331 -0
- package/dist/{token-goat-hook-chunk-ZRJUZZQE.mjs → token-goat-chunk-YWYITDOS.mjs} +5 -6
- package/dist/{token-goat-hook-chunk-XNZLMFQ2.mjs → token-goat-hook-chunk-6NF4WM2U.mjs} +2772 -883
- package/dist/token-goat-hook-chunk-ANFXTEQO.mjs +23 -0
- package/dist/token-goat-hook-chunk-DHW6SRHR.mjs +5099 -0
- package/dist/token-goat-hook-chunk-DJZGX27J.mjs +9624 -0
- package/dist/token-goat-hook-chunk-J2ZK2FYW.mjs +33 -0
- package/dist/token-goat-hook-chunk-K33JMLL7.mjs +63 -0
- package/dist/token-goat-hook-chunk-LFYT4DLB.mjs +901 -0
- package/dist/token-goat-hook-chunk-PCP4W65Z.mjs +112 -0
- package/dist/token-goat-hook-chunk-Q5URQRIF.mjs +9660 -0
- package/dist/{token-goat-hook-chunk-FMQ37OQD.mjs → token-goat-hook-chunk-TBJ5PUPQ.mjs} +28 -26
- package/dist/token-goat-hook-chunk-TKXOXN4J.mjs +14860 -0
- package/dist/token-goat-hook-chunk-UXD3B4OY.mjs +156 -0
- package/dist/token-goat-hook-chunk-VHZECEQD.mjs +13684 -0
- package/dist/token-goat-hook-chunk-WBTHUYJP.mjs +18329 -0
- package/dist/token-goat-hook.mjs +7 -4
- package/dist/token-goat.core.mjs +14 -89574
- package/package.json +15 -6
- package/dist/token-goat-hook-chunk-4SM2PAR6.mjs +0 -33590
- package/dist/token-goat-hook-chunk-5B3OWRNC.mjs +0 -145
- package/dist/token-goat-hook-chunk-VKAQNN2R.mjs +0 -24416
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "token-goat",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.32",
|
|
4
4
|
"description": "Surgical token-reduction companion for Claude Code and other AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/token-goat.mjs",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "node esbuild.config.mjs",
|
|
20
|
+
"sbom": "npm sbom --sbom-format cyclonedx --omit=dev",
|
|
20
21
|
"typecheck": "tsc --noEmit",
|
|
21
22
|
"typecheck:tests": "tsc -p tsconfig.tests.json --noEmit",
|
|
22
23
|
"test": "vitest run",
|
|
@@ -48,9 +49,10 @@
|
|
|
48
49
|
"files": [
|
|
49
50
|
"dist/",
|
|
50
51
|
"README.md",
|
|
52
|
+
"SECURITY.md",
|
|
51
53
|
"LICENSE"
|
|
52
54
|
],
|
|
53
|
-
"license": "
|
|
55
|
+
"license": "PolyForm-Noncommercial-1.0.0",
|
|
54
56
|
"engines": {
|
|
55
57
|
"node": ">=22.0.0"
|
|
56
58
|
},
|
|
@@ -58,7 +60,6 @@
|
|
|
58
60
|
"better-sqlite3": "^11.3.0",
|
|
59
61
|
"commander": "^12.1.0",
|
|
60
62
|
"csv-parse": "^7.0.1",
|
|
61
|
-
"html-to-text": "^10.0.0",
|
|
62
63
|
"js-yaml": "^5.2.1",
|
|
63
64
|
"jsonc-parser": "^3.3.1",
|
|
64
65
|
"smol-toml": "^1.7.0",
|
|
@@ -68,8 +69,9 @@
|
|
|
68
69
|
"@eslint/js": "^10.0.1",
|
|
69
70
|
"@types/better-sqlite3": "^7.6.11",
|
|
70
71
|
"@types/node": "^22.0.0",
|
|
71
|
-
"esbuild": "^0.
|
|
72
|
+
"esbuild": "^0.28.2",
|
|
72
73
|
"eslint": "^10.5.0",
|
|
74
|
+
"html-to-text": "^10.0.0",
|
|
73
75
|
"lefthook": "^2.1.10",
|
|
74
76
|
"tsx": "^4.19.0",
|
|
75
77
|
"typescript": "^6.0.3",
|
|
@@ -83,8 +85,8 @@
|
|
|
83
85
|
"fast-xml-parser": "^5.9.3",
|
|
84
86
|
"fflate": "^0.8.3",
|
|
85
87
|
"pdfjs-dist": "^6.1.200",
|
|
86
|
-
"puppeteer-core": "^
|
|
87
|
-
"sharp": "^0.
|
|
88
|
+
"puppeteer-core": "^25.8.0",
|
|
89
|
+
"sharp": "^0.35.3",
|
|
88
90
|
"sqlite-vec": "^0.1.9",
|
|
89
91
|
"tesseract.js": "^6.0.1",
|
|
90
92
|
"tree-sitter": "^0.22.4",
|
|
@@ -118,5 +120,12 @@
|
|
|
118
120
|
"tree-sitter-ruby@0.23.1": true,
|
|
119
121
|
"tree-sitter-rust@0.23.3": true,
|
|
120
122
|
"tree-sitter-typescript@0.23.2": true
|
|
123
|
+
},
|
|
124
|
+
"overrides": {
|
|
125
|
+
"protobufjs": "^8.7.2",
|
|
126
|
+
"deepmerge-ts": "^8.0.1",
|
|
127
|
+
"uuid": "^14.0.1",
|
|
128
|
+
"sharp": "^0.35.3",
|
|
129
|
+
"unzipper": "^0.12.5"
|
|
121
130
|
}
|
|
122
131
|
}
|