@chosengeneration/light-code 0.2.0 → 0.9.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/dist/cli.js +1880 -604
- package/dist/client/client.js +36 -33
- package/dist/client/guide/appearance-dark.svg +1 -0
- package/dist/client/guide/appearance-light.svg +1 -0
- package/dist/client/guide/approvals-dark.svg +1 -0
- package/dist/client/guide/approvals-light.svg +1 -0
- package/dist/client/guide/chat-dark.svg +1 -0
- package/dist/client/guide/chat-light.svg +1 -0
- package/dist/client/guide/expert-dark.svg +1 -0
- package/dist/client/guide/expert-light.svg +1 -0
- package/dist/client/guide/mcp-dark.svg +1 -0
- package/dist/client/guide/mcp-light.svg +1 -0
- package/dist/client/guide/network-dark.svg +1 -0
- package/dist/client/guide/network-light.svg +1 -0
- package/dist/client/guide/orientation-dark.svg +1 -0
- package/dist/client/guide/orientation-light.svg +1 -0
- package/dist/client/guide/privacy-dark.svg +1 -0
- package/dist/client/guide/privacy-light.svg +1 -0
- package/dist/client/guide/providers-dark.svg +1 -0
- package/dist/client/guide/providers-light.svg +1 -0
- package/dist/client/guide/python-dark.svg +1 -0
- package/dist/client/guide/python-light.svg +1 -0
- package/dist/client/guide/schedules-dark.svg +1 -0
- package/dist/client/guide/schedules-light.svg +1 -0
- package/dist/client/guide/search-dark.svg +1 -0
- package/dist/client/guide/search-light.svg +1 -0
- package/dist/client/guide/skills-dark.svg +1 -0
- package/dist/client/guide/skills-light.svg +1 -0
- package/dist/client/guide/tools-dark.svg +1 -0
- package/dist/client/guide/tools-light.svg +1 -0
- package/dist/server.js +1551 -476
- package/package.json +65 -63
package/package.json
CHANGED
|
@@ -1,63 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@chosengeneration/light-code",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A minimal agentic coding assistant, served to your browser from a local Node server",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"bin": {
|
|
8
|
-
"light-code": "dist/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist/**/*.js",
|
|
12
|
-
"dist/**/*.html",
|
|
13
|
-
"dist/**/*.css",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@chosengeneration/light-code",
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "A minimal agentic coding assistant, served to your browser from a local Node server",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"light-code": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/**/*.js",
|
|
12
|
+
"dist/**/*.html",
|
|
13
|
+
"dist/**/*.css",
|
|
14
|
+
"dist/**/*.svg",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "node ../../scripts/generate-operator-guide.mjs && node esbuild.mjs",
|
|
20
|
+
"typecheck": "tsc -b tsconfig.json",
|
|
21
|
+
"start": "node ./dist/cli.js",
|
|
22
|
+
"generate:guide": "node ../../scripts/generate-operator-guide.mjs"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@light-code/core": "workspace:*",
|
|
26
|
+
"@light-code/ui": "workspace:*",
|
|
27
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
28
|
+
"@types/react": "^19.2.18",
|
|
29
|
+
"@types/react-dom": "^19.2.4",
|
|
30
|
+
"env-paths": "^4.0.0",
|
|
31
|
+
"esbuild": "^0.27.2",
|
|
32
|
+
"react": "^19.2.8",
|
|
33
|
+
"react-dom": "^19.2.8",
|
|
34
|
+
"undici": "^8.10.0",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"ai",
|
|
39
|
+
"agent",
|
|
40
|
+
"coding-assistant",
|
|
41
|
+
"llm",
|
|
42
|
+
"mcp",
|
|
43
|
+
"openai",
|
|
44
|
+
"anthropic",
|
|
45
|
+
"cli"
|
|
46
|
+
],
|
|
47
|
+
"homepage": "https://github.com/chosengenerationdev/light-code#readme",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/chosengenerationdev/light-code.git",
|
|
51
|
+
"directory": "apps/host"
|
|
52
|
+
},
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/chosengenerationdev/light-code/issues"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=20.0.0"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
62
|
+
"optionalDependencies": {
|
|
63
|
+
"@vscode/ripgrep": "^1.18.0"
|
|
64
|
+
}
|
|
65
|
+
}
|