@s25studio/sinth 1.0.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.md +92 -0
- package/README.md +111 -0
- package/THIRD-PARTY-NOTICES.md +127 -0
- package/dist/esm/BufferGeometryUtils-DBNyVaoE.js +99 -0
- package/dist/esm/createTextGeometry-C1mQrq4Z.js +8095 -0
- package/dist/esm/customAssetGeometry-MXHVov4w.js +1720 -0
- package/dist/esm/instanceTypes-zqDi1nZx.js +63 -0
- package/dist/esm/sinth.js +4069 -0
- package/dist/esm/svgAssetGeometry-CSnPWwR1.js +903 -0
- package/dist/sinth-1.0.0.min.js +677 -0
- package/dist/sinth.min.js +677 -0
- package/dist/three-1.0.0.min.js +4132 -0
- package/dist/three.min.js +4132 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@s25studio/sinth",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Sinth — a real-time 3D pattern engine for the web. Drop-in <script> embed, split Three.js build, and ESM library.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"3d",
|
|
7
|
+
"three",
|
|
8
|
+
"threejs",
|
|
9
|
+
"webgl",
|
|
10
|
+
"generative",
|
|
11
|
+
"pattern",
|
|
12
|
+
"embed",
|
|
13
|
+
"sinth"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://app.sinth.space",
|
|
16
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"three": ">=0.184.0"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "./dist/esm/sinth.js",
|
|
22
|
+
"module": "./dist/esm/sinth.js",
|
|
23
|
+
"unpkg": "./dist/sinth.min.js",
|
|
24
|
+
"jsdelivr": "./dist/sinth.min.js",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"unpkg": "./dist/sinth.min.js",
|
|
28
|
+
"import": "./dist/esm/sinth.js",
|
|
29
|
+
"default": "./dist/esm/sinth.js"
|
|
30
|
+
},
|
|
31
|
+
"./split": "./dist/sinth.min.js",
|
|
32
|
+
"./three": "./dist/three.min.js",
|
|
33
|
+
"./dist/*": "./dist/*",
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE.md",
|
|
40
|
+
"THIRD-PARTY-NOTICES.md"
|
|
41
|
+
],
|
|
42
|
+
"sideEffects": [
|
|
43
|
+
"./dist/sinth.min.js",
|
|
44
|
+
"./dist/three.min.js"
|
|
45
|
+
],
|
|
46
|
+
"sinth": {
|
|
47
|
+
"snapshot": "v48"
|
|
48
|
+
}
|
|
49
|
+
}
|