jaml-ui 0.8.0 → 0.9.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 -21
- package/README.md +135 -135
- package/dist/components/JamlCodeEditor.d.ts +7 -0
- package/dist/components/JamlCodeEditor.js +58 -0
- package/dist/components/JamlIde.js +2 -14
- package/dist/components/JamlIdeVisual.js +4 -4
- package/dist/hooks/searchWorkerCode.js +59 -59
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/ui/footer.js +5 -5
- package/package.json +9 -2
- package/dist/data/balatro-jokers.json +0 -1241
- package/dist/r3f/BalatroJokerMesh3D.d.ts +0 -8
- package/dist/r3f/BalatroJokerMesh3D.js +0 -98
- package/dist/r3f/BalatroJokerPreview3D.d.ts +0 -14
- package/dist/r3f/BalatroJokerPreview3D.js +0 -30
- package/dist/r3f/BalatroPlayingCard3D.d.ts +0 -22
- package/dist/r3f/BalatroPlayingCard3D.js +0 -62
- package/dist/r3f/cardConstants.d.ts +0 -16
- package/dist/r3f/cardConstants.js +0 -14
- package/dist/r3f/compositedAtlas.d.ts +0 -5
- package/dist/r3f/compositedAtlas.js +0 -56
- package/dist/r3f/gridUV.d.ts +0 -22
- package/dist/r3f/gridUV.js +0 -30
- package/dist/r3f/index.d.ts +0 -12
- package/dist/r3f/index.js +0 -13
- package/dist/r3f/jokerRegistry.d.ts +0 -28
- package/dist/r3f/jokerRegistry.js +0 -40
- package/dist/r3f/jokerTilt.d.ts +0 -8
- package/dist/r3f/jokerTilt.js +0 -41
- package/dist/r3f/magneticTilt.d.ts +0 -18
- package/dist/r3f/magneticTilt.js +0 -34
- package/dist/r3f/playingCardTypes.d.ts +0 -24
- package/dist/r3f/playingCardTypes.js +0 -32
- package/dist/r3f/playingCardVisuals.d.ts +0 -7
- package/dist/r3f/playingCardVisuals.js +0 -45
- package/dist/r3f/usePlayingCardTexture.d.ts +0 -7
- package/dist/r3f/usePlayingCardTexture.js +0 -92
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaml-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Balatro rendering components, sprite metadata, and optional Motely helpers for React apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsc --pretty false",
|
|
39
39
|
"dev": "tsc --watch",
|
|
40
|
+
"demo": "vite --config demo/vite.config.ts",
|
|
40
41
|
"typecheck": "tsc --noEmit --pretty false",
|
|
41
42
|
"prepack": "npm run build"
|
|
42
43
|
},
|
|
@@ -66,8 +67,10 @@
|
|
|
66
67
|
"author": "pifreak",
|
|
67
68
|
"license": "MIT",
|
|
68
69
|
"peerDependencies": {
|
|
70
|
+
"@monaco-editor/react": ">=4.0.0",
|
|
69
71
|
"@react-spring/three": ">=9.0.0",
|
|
70
72
|
"@react-three/fiber": ">=8.0.0",
|
|
73
|
+
"monaco-editor": ">=0.50.0",
|
|
71
74
|
"motely-wasm": "^10.2.0 || ^11.0.0 || ^12.0.0",
|
|
72
75
|
"react": "^18.2.0 || ^19.0.0",
|
|
73
76
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
@@ -92,16 +95,20 @@
|
|
|
92
95
|
}
|
|
93
96
|
},
|
|
94
97
|
"devDependencies": {
|
|
98
|
+
"@monaco-editor/react": "^4.7.0",
|
|
95
99
|
"@react-spring/three": "^10.0.3",
|
|
96
100
|
"@react-three/fiber": "^9.6.0",
|
|
97
101
|
"@types/react": "^19.2.14",
|
|
98
102
|
"@types/react-dom": "^19.2.3",
|
|
99
103
|
"@types/three": "^0.184.0",
|
|
104
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
105
|
+
"monaco-editor": "^0.55.1",
|
|
100
106
|
"motely-wasm": "^12.0.0",
|
|
101
107
|
"react": "^19.2.4",
|
|
102
108
|
"react-dom": "^19.2.4",
|
|
103
109
|
"react-icons": "^5.6.0",
|
|
104
110
|
"three": "^0.184.0",
|
|
105
|
-
"typescript": "^5.9.3"
|
|
111
|
+
"typescript": "^5.9.3",
|
|
112
|
+
"vite": "^8.0.9"
|
|
106
113
|
}
|
|
107
114
|
}
|