-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@jaimebboyjt/three-scatter",
"version": "0.5.0",
"license": "MIT",
"private": false,
"description": "A Three.js library for scattering 3D models",
"repository": {
"type": "git",
"url": "https://github.com/JaimeTorrealba/three-scatter.git"
},
"bugs": {
"url": "https://github.com/JaimeTorrealba/three-scatter/issues"
},
"homepage": "https://three-scatter-docs.netlify.app/",
"publishConfig": {
"access": "public"
},
"type": "module",
"keywords": [
"3d",
"threejs",
"three"
],
"maintainers": [
"Jaime Torrealba (https://github.com/JaimeTorrealba)"
],
"scripts": {
"dev": "cd ./playground && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"main": "./dist/three-scatter.js",
"module": "./dist/three-scatter.js",
"exports": {
".": {
"import": "./dist/three-scatter.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"three": ">=0.165.0"
},
"devDependencies": {
"@types/node": "^22.15.24",
"@types/three": "^0.165.0",
"rollup-plugin-visualizer": "^6.0.1",
"tweakpane": "^4.0.5",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vitepress": "2.0.0-alpha.16"
},
"dependencies": {
"alea": "^1.0.1"
}
}