-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "three-render-objects",
"version": "1.41.1",
"description": "Easy way to render ThreeJS objects with built-in interaction defaults",
"license": "MIT",
"type": "module",
"unpkg": "dist/three-render-objects.min.js",
"jsdelivr": "dist/three-render-objects.min.js",
"main": "dist/three-render-objects.mjs",
"module": "dist/three-render-objects.mjs",
"types": "dist/three-render-objects.d.ts",
"exports": {
"types": "./dist/three-render-objects.d.ts",
"umd": "./dist/three-render-objects.min.js",
"default": "./dist/three-render-objects.mjs"
},
"sideEffects": [
"./src/*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-render-objects.git"
},
"homepage": "https://github.com/vasturiano/three-render-objects",
"keywords": [
"3d",
"three",
"objects",
"scene",
"tick",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/three-render-objects/issues"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"dependencies": {
"@tweenjs/tween.js": "18 - 25",
"accessor-fn": "1",
"float-tooltip": "^1.7",
"kapsule": "^1.16",
"polished": "4"
},
"peerDependencies": {
"three": ">=0.179"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/react": "^19.2.14",
"postcss": "^8.5.8",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-postcss": "^4.0.2",
"three": "^0.183.2",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=12"
}
}