-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
executable file
·32 lines (32 loc) · 982 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.modifiers",
"version": "2.5.7",
"description": "This is a library of modifiers for three.js objects. A modifier is an function used to modify a 3d object.",
"main": "dist/modifiers.min.js",
"types": "src/index.ts",
"scripts": {
"dev": "serve ./",
"build": "rm -rf dist & webpack --config webpack.pub.js --progress --colors",
"demo": "webpack-dev-server --config webpack.dev.js --port 8888 --devtool eval-source-map --progress --colors --hot --inline --content-base ./test"
},
"keywords": [
"threejs",
"modifiers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drawcall/threejs-mesh-modifiers.git"
},
"author": "drawcall",
"license": "BSD",
"devDependencies": {
"@types/node": "^15.12.1",
"raw-loader": "^0.5.1",
"serve": "^11.3.2",
"ts-loader": "^2.0.0",
"typescript": "^4.3.2",
"typings": "^2.0.0",
"webpack": "^3.3.0",
"webpack-dev-server": "^3.1.11"
}
}