@plasius/gpu-xr 0.1.0 → 0.1.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.
- package/CHANGELOG.md +43 -0
- package/README.md +8 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,3 +7,46 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
- Initial scaffold for `@plasius/gpu-xr`.
|
|
8
8
|
- Added framework-agnostic WebXR support probing and session lifecycle APIs.
|
|
9
9
|
- Added unit tests, demo, and ADR documentation.
|
|
10
|
+
|
|
11
|
+
## [Unreleased]
|
|
12
|
+
|
|
13
|
+
- **Added**
|
|
14
|
+
- (placeholder)
|
|
15
|
+
|
|
16
|
+
- **Changed**
|
|
17
|
+
- (placeholder)
|
|
18
|
+
|
|
19
|
+
- **Fixed**
|
|
20
|
+
- (placeholder)
|
|
21
|
+
|
|
22
|
+
- **Security**
|
|
23
|
+
- (placeholder)
|
|
24
|
+
|
|
25
|
+
## [0.1.1] - 2026-02-28
|
|
26
|
+
|
|
27
|
+
- **Added**
|
|
28
|
+
- (placeholder)
|
|
29
|
+
|
|
30
|
+
- **Changed**
|
|
31
|
+
- (placeholder)
|
|
32
|
+
|
|
33
|
+
- **Fixed**
|
|
34
|
+
- (placeholder)
|
|
35
|
+
|
|
36
|
+
- **Security**
|
|
37
|
+
- (placeholder)
|
|
38
|
+
|
|
39
|
+
## [0.1.0] - 2026-02-11
|
|
40
|
+
|
|
41
|
+
- **Added**
|
|
42
|
+
- Initial release.
|
|
43
|
+
|
|
44
|
+
- **Changed**
|
|
45
|
+
- (placeholder)
|
|
46
|
+
|
|
47
|
+
- **Fixed**
|
|
48
|
+
- (placeholder)
|
|
49
|
+
|
|
50
|
+
- **Security**
|
|
51
|
+
- (placeholder)
|
|
52
|
+
[0.1.1]: https://github.com/Plasius-LTD/gpu-xr/releases/tag/v0.1.1
|
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# @plasius/gpu-xr
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@plasius/gpu-xr)
|
|
3
|
+
[](https://www.npmjs.com/package/@plasius/gpu-xr)
|
|
4
|
+
[](https://github.com/Plasius-LTD/gpu-xr/actions/workflows/ci.yml)
|
|
5
|
+
[](https://codecov.io/gh/Plasius-LTD/gpu-xr)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
[](./CODE_OF_CONDUCT.md)
|
|
8
|
+
[](./SECURITY.md)
|
|
9
|
+
[](./CHANGELOG.md)
|
|
10
|
+
|
|
4
11
|
[](./LICENSE)
|
|
5
12
|
|
|
6
13
|
Framework-agnostic WebXR session management for Plasius GPU rendering projects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-xr",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Framework-agnostic WebXR session management for Plasius GPU rendering projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"demo": "python3 -m http.server --directory ..",
|
|
30
30
|
"test": "npm run test:unit",
|
|
31
31
|
"test:unit": "node --test",
|
|
32
|
-
"test:coverage": "c8 --reporter=lcov --reporter=text node --test"
|
|
32
|
+
"test:coverage": "c8 --reporter=lcov --reporter=text node --test",
|
|
33
|
+
"pack:check": "node scripts/verify-public-package.cjs",
|
|
34
|
+
"prepublishOnly": "npm run build && npm run pack:check"
|
|
33
35
|
},
|
|
34
36
|
"keywords": [
|
|
35
37
|
"webxr",
|
|
@@ -66,5 +68,8 @@
|
|
|
66
68
|
"type": "github",
|
|
67
69
|
"url": "https://github.com/sponsors/Plasius-LTD"
|
|
68
70
|
}
|
|
69
|
-
]
|
|
71
|
+
],
|
|
72
|
+
"overrides": {
|
|
73
|
+
"minimatch": "^10.2.1"
|
|
74
|
+
}
|
|
70
75
|
}
|