ghosto 0.0.2
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 +161 -0
- package/dist/index.d.mts +77 -0
- package/dist/index.mjs +1284 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ghosto",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Procedural 3D mascot for React. Zero config. Full control.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"mascot",
|
|
8
|
+
"3d",
|
|
9
|
+
"three",
|
|
10
|
+
"react-three-fiber",
|
|
11
|
+
"ai"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/1qh/ghosto"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "1qh",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.mts",
|
|
23
|
+
"import": "./dist/index.mjs"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"main": "dist/index.mjs",
|
|
27
|
+
"types": "dist/index.d.mts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"LICENSE"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsdown",
|
|
34
|
+
"prepublishOnly": "bun run build",
|
|
35
|
+
"postpublish": "bunx pm4ai@latest cleanup"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"idb-keyval": "latest",
|
|
39
|
+
"zustand": "latest"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@react-three/fiber": ">=8",
|
|
43
|
+
"react": ">=19",
|
|
44
|
+
"react-dom": ">=19",
|
|
45
|
+
"three": ">=0.160"
|
|
46
|
+
}
|
|
47
|
+
}
|