forked from vasturiano/three-render-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 KB
/
package.json
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
{
"name": "three-render-objects",
"version": "1.27.3",
"description": "Easy way to render ThreeJS objects with built-in interaction defaults",
"license": "MIT",
"unpkg": "dist/three-render-objects.min.js",
"main": "dist/three-render-objects.common.js",
"module": "dist/three-render-objects.module.js",
"types": "dist/three-render-objects.d.ts",
"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": "http://bl.ocks.org/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",
"accessor-fn": "1",
"kapsule": "^1.13",
"polished": "4"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"postcss": "^8.4.16",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.143.0",
"typescript": "^4.7.4"
}
}