@gasm-compiler/core 0.3.0 → 0.3.1

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gasm-compiler/core",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Gasm Compiler — compile WebAssembly to WGSL (WebGPU Shading Language)",
5
5
  "type": "module",
6
6
  "main": "./dist/mod.js",
@@ -43,6 +43,16 @@
43
43
  "LICENSE",
44
44
  "README.md"
45
45
  ],
46
+ "scripts": {
47
+ "build": "pnpm --dir ../.. core-rs:build:wasm:release && deno run --allow-read --allow-write ../../scripts/generate_core_rs_wasm_embed.ts --release && tsup && deno run --allow-read --allow-write ../../scripts/fix_node_builtin_imports.ts && deno run --allow-read --allow-write --allow-run --allow-env ../../scripts/copy_core_rs_wasm.ts --release",
48
+ "test": "pnpm --dir ../.. core-rs:build:wasm && GASM_CORE_BACKEND=rust deno test --allow-all",
49
+ "test:e2e": "deno test --allow-all --unstable-webgpu --no-check tests/e2e_execution_test.ts",
50
+ "test:e2e:gpu": "ENABLE_GPU_TESTS=1 deno test --allow-all --unstable-webgpu --no-check tests/e2e_execution_test.ts",
51
+ "lint": "biome lint .",
52
+ "prepublishOnly": "pnpm run build",
53
+ "size": "pnpm --dir ../.. core-rs:size",
54
+ "pack:smoke": "pnpm --dir ../.. core-rs:pack-smoke"
55
+ },
46
56
  "license": "SEE LICENSE IN LICENSE",
47
57
  "publishConfig": {
48
58
  "access": "public"
@@ -65,14 +75,5 @@
65
75
  "devDependencies": {
66
76
  "tsup": "^8.5.1",
67
77
  "typescript": "^5.9.3"
68
- },
69
- "scripts": {
70
- "build": "pnpm --dir ../.. core-rs:build:wasm:release && deno run --allow-read --allow-write ../../scripts/generate_core_rs_wasm_embed.ts --release && tsup && deno run --allow-read --allow-write ../../scripts/fix_node_builtin_imports.ts && deno run --allow-read --allow-write --allow-run --allow-env ../../scripts/copy_core_rs_wasm.ts --release",
71
- "test": "pnpm --dir ../.. core-rs:build:wasm && GASM_CORE_BACKEND=rust deno test --allow-all",
72
- "test:e2e": "deno test --allow-all --unstable-webgpu --no-check tests/e2e_execution_test.ts",
73
- "test:e2e:gpu": "ENABLE_GPU_TESTS=1 deno test --allow-all --unstable-webgpu --no-check tests/e2e_execution_test.ts",
74
- "lint": "biome lint .",
75
- "size": "pnpm --dir ../.. core-rs:size",
76
- "pack:smoke": "pnpm --dir ../.. core-rs:pack-smoke"
77
78
  }
78
- }
79
+ }
package/LICENSE DELETED
@@ -1,17 +0,0 @@
1
- Copyright (c) 2025-present Gasm Compiler Authors
2
-
3
- All rights reserved.
4
-
5
- This software and associated documentation files (the "Software") are the
6
- proprietary property of the copyright holder(s). No permission is granted to
7
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
8
- of the Software, except as expressly permitted in a separate written license
9
- agreement with the copyright holder(s).
10
-
11
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17
- SOFTWARE.