-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 780 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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
{
"name": "grafar",
"version": "4.5.20",
"description": "Fastest mathematical visualization",
"main": "build/grafar.js",
"typings": "./build/grafar.d.ts",
"scripts": {
"clear": "rimraf build",
"build:types": "tsc --emitDeclarationOnly --declaration",
"build": "npm run clear && NODE_ENV=production webpack",
"dev": "webpack --watch",
"prepublish": "npm run build"
},
"author": "Vladimir Klepov",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"stats.js": "^0.16.0",
"three": "^0.81.2"
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/three": "^0.81.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.1.1",
"typescript": "^3.9.9",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
}
}