musewalk 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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/index.js +8 -0
  3. package/package.json +29 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Musewalk
2
+
3
+ Musewalk is preparing for open source.
4
+
5
+ This npm package is a temporary name-reservation placeholder for the future
6
+ walkable 3D art gallery engine.
7
+
8
+ Repository: https://github.com/shuyan-5200/musewalk
9
+
10
+ The real source code, documentation, and demo will be added after the public
11
+ release cleanup is complete.
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ export const musewalkStatus = {
2
+ name: "musewalk",
3
+ version: "0.0.1",
4
+ status: "placeholder",
5
+ repository: "https://github.com/shuyan-5200/musewalk"
6
+ };
7
+
8
+ export default musewalkStatus;
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "musewalk",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder package for Musewalk, a walkable 3D art gallery engine.",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "exports": "./index.js",
8
+ "files": [
9
+ "index.js",
10
+ "README.md"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/shuyan-5200/musewalk.git"
15
+ },
16
+ "keywords": [
17
+ "threejs",
18
+ "webgl",
19
+ "3d",
20
+ "art-gallery",
21
+ "virtual-museum",
22
+ "museum",
23
+ "creative-coding"
24
+ ],
25
+ "license": "MIT",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }