quantwise 1.2.0
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/cli.mjs +1868 -0
- package/package.json +34 -0
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "quantwise",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "QuantWise - An agentic coding tool that lives in your terminal",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"quantwise": "cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.0.0"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"cli.mjs"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {},
|
|
16
|
+
"dependencies": {},
|
|
17
|
+
"optionalDependencies": {
|
|
18
|
+
"@img/sharp-darwin-arm64": "^0.33.5",
|
|
19
|
+
"@img/sharp-linux-arm": "^0.33.5",
|
|
20
|
+
"@img/sharp-linux-x64": "^0.33.5",
|
|
21
|
+
"@img/sharp-win32-x64": "^0.33.5"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude",
|
|
25
|
+
"anthropic",
|
|
26
|
+
"ai",
|
|
27
|
+
"coding",
|
|
28
|
+
"assistant",
|
|
29
|
+
"cli",
|
|
30
|
+
"terminal"
|
|
31
|
+
],
|
|
32
|
+
"author": "Anthropic <support@anthropic.com>",
|
|
33
|
+
"license": "SEE LICENSE IN LICENSE.md"
|
|
34
|
+
}
|