savant-code 0.0.9
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 +107 -0
- package/http.js +439 -0
- package/index.js +34 -0
- package/launcher.js +1216 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "savant-code",
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "Multi-Agent AI Coding Assistant with ECHO Protocol",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Savant Code <founders@savant-code.com>",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"ai",
|
|
9
|
+
"cli",
|
|
10
|
+
"coding-assistant",
|
|
11
|
+
"agent",
|
|
12
|
+
"echo-protocol",
|
|
13
|
+
"multi-agent",
|
|
14
|
+
"typescript"
|
|
15
|
+
],
|
|
16
|
+
"bin": {
|
|
17
|
+
"savant-code": "index.js",
|
|
18
|
+
"sc": "index.js"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"prepack": "node ../release-core/prepare-package.js",
|
|
22
|
+
"postpack": "node ../release-core/prepare-package.js --clean"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"index.js",
|
|
26
|
+
"launcher.js",
|
|
27
|
+
"http.js",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"os": [
|
|
31
|
+
"darwin",
|
|
32
|
+
"linux",
|
|
33
|
+
"win32"
|
|
34
|
+
],
|
|
35
|
+
"cpu": [
|
|
36
|
+
"x64",
|
|
37
|
+
"arm64"
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=16"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"tar": "^7.0.0"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/savant0x/savant-code.git"
|
|
48
|
+
},
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/savant0x/savant-code/issues"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://github.com/savant0x/savant-code#readme",
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
}
|
|
56
|
+
}
|