forked from deepkolos/three-platformize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "three-platformize",
"version": "1.133.3",
"description": "platformized three that support wechat and taobao miniprogram and tree shaking",
"main": "build/three.js",
"module": "build/three.module.js",
"sideEffects": false,
"types": "src/Three.d.ts",
"scripts": {
"test": "echo TODO",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"dev": "rollup -w -c config/rollup.config.tests.js",
"link": "symlink-dir ./node_modules/three ./three",
"build": "npm run build-three && npm run build-jsm",
"build-tests": "rollup -c config/rollup.config.tests.js",
"build-three": "rollup -c config/rollup.config.three.js",
"build-jsm": "rollup -c config/rollup.config.jsm.js && node config/post-jsm.js",
"build-platform": "rollup -c config/rollup.config.platform.js"
},
"keywords": [
"three",
"wechat",
"taobao",
"mini",
"program"
],
"author": "DeepKolos <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-inject": "^4.0.2",
"fast-glob": "^3.2.7",
"rollup": "^2.36.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"symlink-dir": "^4.1.0",
"three": "0.133.1"
},
"dependencies": {
"@types/three": "^0.133.0"
}
}