-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
49 lines (49 loc) · 1.27 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
48
49
{
"name": "@loaders.gl/core",
"version": "3.0.0-alpha.21",
"description": "Framework-independent loaders for 3D graphics formats",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/visgl/loaders.gl"
},
"keywords": [
"webgl",
"loader",
"3d",
"mesh",
"point cloud"
],
"types": "src/index.d.ts",
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"browser": {
"./src/node/write-file.node.js": false,
"./src/node/read-file-sync.node.js": false,
"./dist/es5/node/write-file.node.js": false,
"./dist/esm/node/write-file.node.js": false,
"./dist/es6/node/write-file.node.js": false,
"./dist/es5/node/read-file-sync.node.js": false,
"./dist/esm/node/read-file-sync.node.js": false,
"./dist/es6/node/read-file-sync.node.js": false,
"fs": false
},
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"pre-build": "npm run build-bundle",
"build-bundle": "webpack --display=minimal --config ../../scripts/webpack/bundle.js"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@loaders.gl/loader-utils": "3.0.0-alpha.21",
"@loaders.gl/worker-utils": "3.0.0-alpha.21"
}
}