@medieval-kit/registry 0.1.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/LICENSE +21 -0
- package/README.md +233 -0
- package/dist/registry.json +3551 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@medieval-kit/registry",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A lowpoly medieval procedural model library for Vibe3D and Three.js.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "CRTkafa",
|
|
8
|
+
"homepage": "https://medieval.crt.fyi/",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/CRTkafa/medieval-kit.git",
|
|
12
|
+
"directory": "my-registry"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/CRTkafa/medieval-kit/issues"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public",
|
|
19
|
+
"registry": "https://registry.npmjs.org/"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"vibe3d",
|
|
23
|
+
"vibe3d-registry",
|
|
24
|
+
"threejs",
|
|
25
|
+
"3d-models",
|
|
26
|
+
"medieval",
|
|
27
|
+
"lowpoly",
|
|
28
|
+
"procedural"
|
|
29
|
+
],
|
|
30
|
+
"vibe3d": {
|
|
31
|
+
"registry": "./dist/registry.json"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "bun build.ts",
|
|
40
|
+
"validate": "vibe3d registry validate dist/registry.json",
|
|
41
|
+
"prepublishOnly": "bun build.ts && vibe3d registry validate dist/registry.json"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"three": ">=0.185.0"
|
|
45
|
+
}
|
|
46
|
+
}
|