quickjs-wasi-reactor 0.0.11 → 0.13.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/README.md CHANGED
@@ -8,11 +8,9 @@ This package provides a JavaScript/TypeScript implementation for running QuickJS
8
8
 
9
9
  ## Related Projects
10
10
 
11
+ - [QuickJS-NG](https://github.com/quickjs-ng/quickjs) - Upstream QuickJS-NG (includes WASI reactor build)
11
12
  - [go-quickjs-wasi-reactor](https://github.com/aperturerobotics/go-quickjs-wasi-reactor) - Go implementation with wazero
12
13
  - [go-quickjs-wasi](https://github.com/paralin/go-quickjs-wasi) - Go implementation for command model (blocking)
13
- - [paralin/quickjs](https://github.com/paralin/quickjs) - QuickJS-NG fork with reactor build target
14
- - [QuickJS-NG reactor PR](https://github.com/quickjs-ng/quickjs/pull/1308) - Upstream PR for reactor support
15
- - [QuickJS-NG event loop PR](https://github.com/quickjs-ng/quickjs/pull/1307) - Upstream PR for non-blocking event loop
16
14
 
17
15
  ## Installation
18
16
 
package/dist/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /** QuickJS-NG version string */
2
- export declare const VERSION = "v0.11.0-wasi29-reactor-r9";
2
+ export declare const VERSION = "v0.13.0";
3
3
  /** Download URL for the WASM binary */
4
- export declare const DOWNLOAD_URL = "https://github.com/paralin/quickjs/releases/download/v0.11.0-wasi29-reactor-r9/qjs-wasi-reactor.wasm";
4
+ export declare const DOWNLOAD_URL = "https://github.com/quickjs-ng/quickjs/releases/download/v0.13.0/qjs-wasi-reactor.wasm";
5
5
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAGA,gCAAgC;AAChC,eAAO,MAAM,OAAO,8BAA8B,CAAA;AAElD,uCAAuC;AACvC,eAAO,MAAM,YAAY,yGAAyG,CAAA"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAGA,gCAAgC;AAChC,eAAO,MAAM,OAAO,YAAY,CAAA;AAEhC,uCAAuC;AACvC,eAAO,MAAM,YAAY,0FAA0F,CAAA"}
package/dist/version.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // Auto-generated by update-quickjs.bash
2
2
  // Do not edit manually
3
3
  /** QuickJS-NG version string */
4
- export const VERSION = 'v0.11.0-wasi29-reactor-r9';
4
+ export const VERSION = 'v0.13.0';
5
5
  /** Download URL for the WASM binary */
6
- export const DOWNLOAD_URL = 'https://github.com/paralin/quickjs/releases/download/v0.11.0-wasi29-reactor-r9/qjs-wasi-reactor.wasm';
6
+ export const DOWNLOAD_URL = 'https://github.com/quickjs-ng/quickjs/releases/download/v0.13.0/qjs-wasi-reactor.wasm';
7
7
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,wCAAwC;AACxC,uBAAuB;AAEvB,gCAAgC;AAChC,MAAM,CAAC,MAAM,OAAO,GAAG,2BAA2B,CAAA;AAElD,uCAAuC;AACvC,MAAM,CAAC,MAAM,YAAY,GAAG,sGAAsG,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,wCAAwC;AACxC,uBAAuB;AAEvB,gCAAgC;AAChC,MAAM,CAAC,MAAM,OAAO,GAAG,SAAS,CAAA;AAEhC,uCAAuC;AACvC,MAAM,CAAC,MAAM,YAAY,GAAG,uFAAuF,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickjs-wasi-reactor",
3
- "version": "0.0.11",
3
+ "version": "0.13.0",
4
4
  "description": "JavaScript harness for QuickJS-NG WASI reactor model",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -53,13 +53,14 @@
53
53
  },
54
54
  "homepage": "https://github.com/aperturerobotics/js-quickjs-wasi-reactor#readme",
55
55
  "devDependencies": {
56
- "@eslint/js": "^9.39.2",
57
- "@typescript/native-preview": "^7.0.0-dev.20260106.1",
58
- "eslint": "^9.39.2",
56
+ "@eslint/js": "^10.0.1",
57
+ "@types/node": "^25.2.3",
58
+ "@typescript/native-preview": "^7.0.0-dev.20260215.1",
59
+ "eslint": "^10.0.0",
59
60
  "eslint-config-prettier": "^10.1.8",
60
- "prettier": "^3.0.0",
61
+ "prettier": "^3.8.1",
61
62
  "typescript": "^5.0.0",
62
- "typescript-eslint": "^8.52.0",
63
- "vitest": "^2.0.0"
63
+ "typescript-eslint": "^8.55.0",
64
+ "vitest": "^4.0.18"
64
65
  }
65
66
  }
package/qjs-wasi.wasm CHANGED
Binary file
package/src/version.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Do not edit manually
3
3
 
4
4
  /** QuickJS-NG version string */
5
- export const VERSION = 'v0.11.0-wasi29-reactor-r9'
5
+ export const VERSION = 'v0.13.0'
6
6
 
7
7
  /** Download URL for the WASM binary */
8
- export const DOWNLOAD_URL = 'https://github.com/paralin/quickjs/releases/download/v0.11.0-wasi29-reactor-r9/qjs-wasi-reactor.wasm'
8
+ export const DOWNLOAD_URL = 'https://github.com/quickjs-ng/quickjs/releases/download/v0.13.0/qjs-wasi-reactor.wasm'