@vizbl/room-viewer 0.0.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.
@@ -0,0 +1,112 @@
1
+ /**
2
+ * @license React
3
+ * react-reconciler.production.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+
11
+ /**
12
+ * @license React
13
+ * react-reconciler.development.js
14
+ *
15
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
16
+ *
17
+ * This source code is licensed under the MIT license found in the
18
+ * LICENSE file in the root directory of this source tree.
19
+ */
20
+
21
+ /**
22
+ * @license
23
+ * Copyright 2010-2025 Three.js Authors
24
+ * SPDX-License-Identifier: MIT
25
+ */
26
+
27
+ /**
28
+ * @license React
29
+ * react-dom-client.production.js
30
+ *
31
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
32
+ *
33
+ * This source code is licensed under the MIT license found in the
34
+ * LICENSE file in the root directory of this source tree.
35
+ */
36
+
37
+ /**
38
+ * @license React
39
+ * react-dom.production.js
40
+ *
41
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
42
+ *
43
+ * This source code is licensed under the MIT license found in the
44
+ * LICENSE file in the root directory of this source tree.
45
+ */
46
+
47
+ /**
48
+ * @license React
49
+ * react-jsx-runtime.production.js
50
+ *
51
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
52
+ *
53
+ * This source code is licensed under the MIT license found in the
54
+ * LICENSE file in the root directory of this source tree.
55
+ */
56
+
57
+ /**
58
+ * @license React
59
+ * react-reconciler-constants.production.js
60
+ *
61
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
62
+ *
63
+ * This source code is licensed under the MIT license found in the
64
+ * LICENSE file in the root directory of this source tree.
65
+ */
66
+
67
+ /**
68
+ * @license React
69
+ * react.production.js
70
+ *
71
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
72
+ *
73
+ * This source code is licensed under the MIT license found in the
74
+ * LICENSE file in the root directory of this source tree.
75
+ */
76
+
77
+ /**
78
+ * @license React
79
+ * scheduler.production.js
80
+ *
81
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
82
+ *
83
+ * This source code is licensed under the MIT license found in the
84
+ * LICENSE file in the root directory of this source tree.
85
+ */
86
+
87
+ /**
88
+ * @license React
89
+ * use-sync-external-store-shim.production.js
90
+ *
91
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
92
+ *
93
+ * This source code is licensed under the MIT license found in the
94
+ * LICENSE file in the root directory of this source tree.
95
+ */
96
+
97
+ /**
98
+ * @license React
99
+ * use-sync-external-store-shim/with-selector.production.js
100
+ *
101
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
102
+ *
103
+ * This source code is licensed under the MIT license found in the
104
+ * LICENSE file in the root directory of this source tree.
105
+ */
106
+
107
+ /**
108
+ * @license lucide-react v0.553.0 - ISC
109
+ *
110
+ * This source code is licensed under the ISC license.
111
+ * See the LICENSE file in the root directory of this source tree.
112
+ */
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@vizbl/room-viewer",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "exports": {
6
+ ".": "./dist/index.js"
7
+ },
8
+ "main": "./dist/room-viewer.bundle.min.js",
9
+ "module": "./dist/room-viewer.bundle.min.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "peerDependencies": {
15
+ "react": "^19.2.0",
16
+ "react-dom": "^19.2.0",
17
+ "@vizbl/react-room-viewer": "0.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@rsbuild/plugin-react": "1.4.2",
21
+ "@rslib/core": "0.18.4",
22
+ "@types/react": "^19.2.4",
23
+ "@types/react-dom": "^19.2.3",
24
+ "eslint": "9.39.1",
25
+ "react": "^19.2.0",
26
+ "react-dom": "^19.2.0",
27
+ "typescript": "^5.9.3",
28
+ "@vizbl/typescript-config": "0.0.0",
29
+ "@vizbl/eslint-config": "0.0.0",
30
+ "@vizbl/react-room-viewer": "0.0.0"
31
+ },
32
+ "scripts": {
33
+ "dev": "rslib build --watch",
34
+ "build": "rslib build",
35
+ "lint": "eslint .",
36
+ "lint:fix": "eslint . --fix"
37
+ }
38
+ }