@telagod/nocode 0.1.3 → 0.1.6

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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [中文文档](README_CN.md) | [Development Guide](docs/DEVELOPMENT.md)
4
4
 
5
- A terminal-native AI coding assistant built in Rust. 38K LOC, 51 modules, 25 tools, 555 tests.
5
+ A terminal-native AI coding assistant built in Rust. 41K LOC, 54 modules, 25 tools, 780 tests.
6
6
 
7
7
  ## Install
8
8
 
@@ -177,6 +177,7 @@ export NOCODE_MODEL=llama3
177
177
  | macOS x64 | `@telagod/nocode-darwin-x64` |
178
178
  | macOS ARM64 | `@telagod/nocode-darwin-arm64` |
179
179
  | Windows x64 | `@telagod/nocode-win32-x64` |
180
+ | Windows ARM64 | `@telagod/nocode-win32-arm64` |
180
181
 
181
182
  ## License
182
183
 
package/bin/nocode CHANGED
@@ -12,6 +12,7 @@ const PLATFORM_PACKAGES = {
12
12
  "darwin-x64": "@telagod/nocode-darwin-x64",
13
13
  "darwin-arm64": "@telagod/nocode-darwin-arm64",
14
14
  "win32-x64": "@telagod/nocode-win32-x64",
15
+ "win32-arm64": "@telagod/nocode-win32-arm64",
15
16
  };
16
17
 
17
18
  function getBinaryPath() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telagod/nocode",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "description": "Terminal-native AI coding assistant built in Rust",
5
5
  "license": "MIT",
6
6
  "author": "telagod",
@@ -16,11 +16,12 @@
16
16
  "postinstall": "node scripts/postinstall.js"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@telagod/nocode-linux-x64": "0.1.3",
20
- "@telagod/nocode-linux-arm64": "0.1.3",
21
- "@telagod/nocode-darwin-x64": "0.1.3",
22
- "@telagod/nocode-darwin-arm64": "0.1.3",
23
- "@telagod/nocode-win32-x64": "0.1.3"
19
+ "@telagod/nocode-linux-x64": "0.1.6",
20
+ "@telagod/nocode-linux-arm64": "0.1.6",
21
+ "@telagod/nocode-darwin-x64": "0.1.6",
22
+ "@telagod/nocode-darwin-arm64": "0.1.6",
23
+ "@telagod/nocode-win32-x64": "0.1.6",
24
+ "@telagod/nocode-win32-arm64": "0.1.6"
24
25
  },
25
26
  "engines": {
26
27
  "node": ">=16"
@@ -13,6 +13,7 @@ const PLATFORMS = {
13
13
  "darwin-x64": "@telagod/nocode-darwin-x64",
14
14
  "darwin-arm64": "@telagod/nocode-darwin-arm64",
15
15
  "win32-x64": "@telagod/nocode-win32-x64",
16
+ "win32-arm64": "@telagod/nocode-win32-arm64",
16
17
  };
17
18
 
18
19
  const key = `${os.platform()}-${os.arch()}`;