@plasius/gpu-camera 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 +29 -0
- package/README.md +8 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
- **Added**
|
|
11
|
+
- (placeholder)
|
|
12
|
+
|
|
13
|
+
- **Changed**
|
|
14
|
+
- (placeholder)
|
|
15
|
+
|
|
16
|
+
- **Fixed**
|
|
17
|
+
- (placeholder)
|
|
18
|
+
|
|
19
|
+
- **Security**
|
|
20
|
+
- (placeholder)
|
|
21
|
+
|
|
22
|
+
## [0.1.1] - 2026-02-28
|
|
23
|
+
|
|
10
24
|
- **Added**
|
|
11
25
|
- (placeholder)
|
|
12
26
|
|
|
@@ -63,3 +77,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
63
77
|
|
|
64
78
|
|
|
65
79
|
[0.1.0]: https://github.com/Plasius-LTD/gpu-camera/releases/tag/v0.1.0
|
|
80
|
+
|
|
81
|
+
## [0.1.0] - 2026-02-11
|
|
82
|
+
|
|
83
|
+
- **Added**
|
|
84
|
+
- Initial release.
|
|
85
|
+
|
|
86
|
+
- **Changed**
|
|
87
|
+
- (placeholder)
|
|
88
|
+
|
|
89
|
+
- **Fixed**
|
|
90
|
+
- (placeholder)
|
|
91
|
+
|
|
92
|
+
- **Security**
|
|
93
|
+
- (placeholder)
|
|
94
|
+
[0.1.1]: https://github.com/Plasius-LTD/gpu-camera/releases/tag/v0.1.1
|
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# @plasius/gpu-camera
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@plasius/gpu-camera)
|
|
3
|
+
[](https://www.npmjs.com/package/@plasius/gpu-camera)
|
|
4
|
+
[](https://github.com/Plasius-LTD/gpu-camera/actions/workflows/ci.yml)
|
|
5
|
+
[](https://codecov.io/gh/Plasius-LTD/gpu-camera)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
[](./CODE_OF_CONDUCT.md)
|
|
8
|
+
[](./SECURITY.md)
|
|
9
|
+
[](./CHANGELOG.md)
|
|
10
|
+
|
|
4
11
|
[](./LICENSE)
|
|
5
12
|
|
|
6
13
|
Framework-agnostic multi-camera runtime for Plasius GPU projects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-camera",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Framework-agnostic multi-camera control runtime with parallel multiview planning.",
|
|
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
|
"camera",
|
|
@@ -67,5 +69,8 @@
|
|
|
67
69
|
"type": "github",
|
|
68
70
|
"url": "https://github.com/sponsors/Plasius-LTD"
|
|
69
71
|
}
|
|
70
|
-
]
|
|
72
|
+
],
|
|
73
|
+
"overrides": {
|
|
74
|
+
"minimatch": "^10.2.1"
|
|
75
|
+
}
|
|
71
76
|
}
|