@plasius/gpu-world-generator 0.0.4 → 0.0.5

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.
@@ -0,0 +1,67 @@
1
+ # Architectural Decision Record (ADR)
2
+
3
+ ## Title
4
+
5
+ > _Concise, descriptive title of the decision (e.g., "Use Azure Container Apps for n8n Deployment")_
6
+
7
+ ---
8
+
9
+ ## Status
10
+
11
+ - Proposed | Accepted | Rejected | Superseded | Deprecated
12
+ - Date: YYYY-MM-DD
13
+ - Version: 1.0
14
+ - Supersedes: ADR-XXXX (if applicable)
15
+ - Superseded by: ADR-YYYY (if applicable)
16
+
17
+ ---
18
+
19
+ ## Tags
20
+
21
+ > _Short keywords to help search and group ADRs (e.g., infra, frontend, security, devops, ai, database)._
22
+
23
+ ---
24
+
25
+ ## Context
26
+
27
+ > _Describe the problem we are solving, relevant background, and constraints.
28
+ > Why are we making this decision? What triggered it?_
29
+
30
+ ---
31
+
32
+ ## Decision
33
+
34
+ > _What is the decision we have made? Clear, affirmative statement of the chosen path._
35
+
36
+ ---
37
+
38
+ ## Alternatives Considered
39
+
40
+ - **Option A**: Description (pros/cons)
41
+ - **Option B**: Description (pros/cons)
42
+ - **Option C**: Description (pros/cons)
43
+
44
+ > _Why were these alternatives not chosen?_
45
+
46
+ ---
47
+
48
+ ## Consequences
49
+
50
+ - Positive outcomes (benefits, opportunities)
51
+ - Negative outcomes (risks, trade-offs)
52
+ - Any technical debt created or avoided
53
+ - Impact on future decisions
54
+
55
+ ---
56
+
57
+ ## Related Decisions
58
+
59
+ > _Link to related ADRs (if any)_
60
+
61
+ ---
62
+
63
+ ## References
64
+
65
+ - [Architectural Decision Records (ADR) standard](https://adr.github.io/)
66
+
67
+ > _Links to docs, benchmarks, discussions, or external resources that influenced this decision_
@@ -1,4 +1,4 @@
1
- # Architecture Decision Records
1
+ # ADR Index
2
2
 
3
3
  - [ADR-0001: GPU World Generator Package Scope](./adr-0001-package-scope.md)
4
4
  - [ADR-0002: Tiled World Generation, LOD, and Stitching](./adr-0002-world-tiling-lod-stitching.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/gpu-world-generator",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "GPU-assisted world generation with hex-grid terrain synthesis.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -27,16 +27,18 @@
27
27
  "scripts": {
28
28
  "build": "tsup && cp src/terrain.wgsl dist/terrain.wgsl && cp src/field.wgsl dist/field.wgsl && cp src/fractal-prepass.wgsl dist/fractal-prepass.wgsl",
29
29
  "test": "node --test",
30
- "test:coverage": "c8 --reporter=lcov --reporter=text node --test"
30
+ "test:coverage": "c8 --reporter=lcov --reporter=text node --test",
31
+ "pack:check": "node scripts/verify-public-package.cjs",
32
+ "prepublishOnly": "npm run build && npm run pack:check"
31
33
  },
32
34
  "dependencies": {
33
- "@plasius/gpu-worker": "^0.1.2"
35
+ "@plasius/gpu-worker": "^0.1.3"
34
36
  },
35
37
  "devDependencies": {
36
38
  "@types/node": "^22.10.0",
39
+ "c8": "^10.1.3",
37
40
  "tsup": "^8.5.0",
38
- "typescript": "^5.9.3",
39
- "c8": "^10.1.3"
41
+ "typescript": "^5.9.3"
40
42
  },
41
43
  "license": "Apache-2.0",
42
44
  "publishConfig": {
@@ -49,5 +51,8 @@
49
51
  "bugs": {
50
52
  "url": "https://github.com/Plasius-LTD/gpu-world-generator/issues"
51
53
  },
52
- "homepage": "https://github.com/Plasius-LTD/gpu-world-generator#readme"
54
+ "homepage": "https://github.com/Plasius-LTD/gpu-world-generator#readme",
55
+ "overrides": {
56
+ "minimatch": "^10.2.1"
57
+ }
53
58
  }