streamkit-pointcloud 0.1.0-alpha.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/dist/types.js ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @streamkit/pointcloud - Core Type Definitions
3
+ *
4
+ * Stable, runtime-agnostic types for PointCloud data.
5
+ * These types intentionally avoid importing Three.js typings
6
+ * to prevent duplicate type conflicts.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "streamkit-pointcloud",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "Production-ready PointCloud rendering kit for Three.js and real-time streaming",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "scripts": {
19
+ "clean": "rimraf dist",
20
+ "build": "tsc -p tsconfig.build.json",
21
+ "prepublishOnly": "npm run clean && npm run build"
22
+ },
23
+ "keywords": [
24
+ "pointcloud",
25
+ "three",
26
+ "draco",
27
+ "lidar",
28
+ "3d",
29
+ "visualization",
30
+ "webgl"
31
+ ],
32
+ "peerDependencies": {
33
+ "three": ">=0.150.0"
34
+ },
35
+ "devDependencies": {
36
+ "three": "^0.160.0",
37
+ "rimraf": "^5.0.5",
38
+ "typescript": "^5.3.0"
39
+ },
40
+ "engines": {
41
+ "node": ">=18.0.0"
42
+ }
43
+ }