-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 1.15 KB
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 1.15 KB
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
{
"name": "neighbour-interpolation-on-gpu",
"version": "1.0.0",
"description": "Real-time natural neighbour interpolation of point cloud data using GPU\n",
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"raw-loader": "^0.5.1",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"develop": "webpack-dev-server --hot --inline --mode development",
"build": "webpack --mode production"
},
"dependencies": {
"gl-matrix": "^3.3.0"
}
}