@wonderyard/vivarium 1.4.1 → 2.0.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 +8 -3
- package/dist/automaton/types.d.ts +1 -0
- package/dist/blueprint/base-blueprint.js +1 -3
- package/dist/blueprint/ref-blueprint.js +2 -2
- package/dist/blueprint/rule-blueprint.js +2 -2
- package/dist/blueprint/utils.js +1 -1
- package/dist/blueprint/vivarium-blueprint.d.ts +3 -1
- package/dist/blueprint/vivarium-blueprint.js +7 -6
- package/dist/common/constants.d.ts +1 -0
- package/dist/common/constants.js +7 -6
- package/dist/common/utils.js +2 -2
- package/dist/constants-BT-9-x_4.js +3289 -0
- package/dist/main.d.ts +2 -2
- package/dist/main.js +1 -1
- package/dist/{rule-blueprint-DGODv9IV.js → rule-blueprint-C9qa6iP-.js} +1 -1
- package/dist/vivarium/vivarium.d.ts +4 -1
- package/dist/vivarium/vivarium.js +4 -4
- package/dist/webgpu/compiler.d.ts +2 -1
- package/dist/webgpu/compiler.js +37 -50
- package/dist/webgpu/setup.d.ts +5 -2
- package/dist/webgpu/setup.js +8452 -4915
- package/package.json +21 -20
- package/dist/constants-D4GX9YB2.js +0 -2301
package/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wonderyard/vivarium",
|
|
3
|
+
"version": "2.0.0",
|
|
3
4
|
"description": "Modern, intuitive, WebGPU-powered toolkit for creating your own cellular automata.",
|
|
4
|
-
"version": "1.4.1",
|
|
5
|
-
"repository": "https://github.com/WonderYard/vivarium",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"author": "OrangeNote",
|
|
8
5
|
"keywords": [
|
|
9
6
|
"cellular-automata",
|
|
10
7
|
"compute",
|
|
@@ -13,42 +10,46 @@
|
|
|
13
10
|
"simulation",
|
|
14
11
|
"webgpu"
|
|
15
12
|
],
|
|
16
|
-
"
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "OrangeNote",
|
|
15
|
+
"repository": "https://github.com/WonderYard/vivarium",
|
|
17
16
|
"files": [
|
|
18
17
|
"dist"
|
|
19
18
|
],
|
|
19
|
+
"type": "module",
|
|
20
20
|
"main": "./dist/main.js",
|
|
21
|
-
"types": "./dist/main.d.ts",
|
|
22
21
|
"module": "./dist/main.js",
|
|
22
|
+
"types": "./dist/main.d.ts",
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "vite",
|
|
25
25
|
"dev:https": "ENABLE_BASIC_SSL=true vite --host",
|
|
26
|
-
"build": "
|
|
26
|
+
"build": "pnpm lint && vite build",
|
|
27
27
|
"preview": "vite preview",
|
|
28
|
-
"lint": "
|
|
29
|
-
"
|
|
30
|
-
"
|
|
28
|
+
"lint": "oxlint --type-aware --type-check",
|
|
29
|
+
"lint:fix": "oxlint --fix --type-aware --type-check",
|
|
30
|
+
"format": "oxfmt",
|
|
31
|
+
"format:check": "oxfmt --check",
|
|
31
32
|
"test": "vitest"
|
|
32
33
|
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@typegpu/noise": "^0.10.0",
|
|
36
|
+
"nanoid": "^5.1.6",
|
|
37
|
+
"typegpu": "^0.10.0"
|
|
38
|
+
},
|
|
33
39
|
"devDependencies": {
|
|
34
|
-
"@biomejs/biome": "2.3.15",
|
|
35
40
|
"@types/node": "^25.2.3",
|
|
36
41
|
"@vitejs/plugin-basic-ssl": "^2.1.4",
|
|
37
42
|
"@vitest/browser-playwright": "^4.0.18",
|
|
38
43
|
"@webgpu/types": "^0.1.69",
|
|
39
|
-
"glob": "^13.0.
|
|
40
|
-
"
|
|
41
|
-
"
|
|
44
|
+
"glob": "^13.0.6",
|
|
45
|
+
"oxfmt": "^0.35.0",
|
|
46
|
+
"oxlint": "^1.50.0",
|
|
47
|
+
"oxlint-tsgolint": "^0.15.0",
|
|
42
48
|
"playwright": "^1.58.2",
|
|
43
49
|
"typescript": "~5.9.3",
|
|
44
|
-
"unplugin-typegpu": "^0.
|
|
50
|
+
"unplugin-typegpu": "^0.10.0",
|
|
45
51
|
"vite": "^7.3.1",
|
|
46
52
|
"vite-plugin-dts": "^4.5.4",
|
|
47
53
|
"vitest": "^4.0.18"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"@typegpu/noise": "^0.9.0",
|
|
51
|
-
"nanoid": "^5.1.6",
|
|
52
|
-
"typegpu": "^0.9.0"
|
|
53
54
|
}
|
|
54
55
|
}
|