-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 858 Bytes
/
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
{
"name": "three-dom-texture",
"version": "0.1.0",
"description": "Transform DOM to threejs texture",
"main": "dist/DOMtexture.js",
"browser": "dist/DOMTexture.min.js",
"module": "src/index.js",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerrykingxyz/THREE.DOMTexture.git"
},
"author": "jinrui",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerrykingxyz/THREE.DOMTexture/issues"
},
"devDependencies": {
"rollup": "^2.75.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.140.0",
"prettier": "^2.6.0"
},
"peerDependencies": {
"three": "^0.140.0"
},
"homepage": "https://github.com/jerrykingxyz/THREE.DOMTexture#readme"
}