-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 3.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@polygonjs/plugin-mapbox",
"version": "1.2.19",
"engines": {
"node": ">=12.16.1",
"yarn": ">=1.22.4"
},
"description": "Mapbox plugin for the 3D engine https://polygonjs.com",
"repository": {
"url": "[email protected]:polygonjs/plugin-mapbox.git",
"type": "git"
},
"keywords": [
"3D",
"javascript",
"webgl",
"procedural",
"node-based",
"map",
"mapbox"
],
"author": "Guillaume Fradin <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"start": "webpack-dev-server --env NODE_ENV=development --env production=false --config config/webpack/dev.js",
"build": "export NODE_OPTIONS='--max-old-space-size=32768' yarn build_folder_delete && yarn build_with_webpack && yarn build_with_esbuild && yarn build_folder_remove_unneeded && yarn cp_types",
"build_full": "export NODE_OPTIONS='--max-old-space-size=32768' yarn build_folder_delete && yarn build_with_webpack && yarn build_with_esbuild && yarn build_folder_remove_unneeded && yarn cp_types",
"build_with_webpack": "webpack --env NODE_ENV=production --env production --progress --config config/webpack/prod.js && yarn renameMJS",
"build_with_webpack_fast": "webpack --env NODE_ENV=production --env production --progress --env FAST_COMPILE=true --config config/webpack/prod.js",
"build_unpkg": "webpack --env NODE_ENV=production --env production --env PUBLIC_PATH='./' --progress --config config/webpack/prod.js",
"build_verbose": "webpack --env NODE_ENV=production --env production --progress --display-reasons --display-used-exports --display-provided-exports --display-chunks --display-max-modules 99999 --display-origins --display-entrypoints --config config/webpack/prod.js",
"build_custom_paths_verbose": "webpack --env NODE_ENV=production --env production --env PUBLIC_PATH=/packs-engine/ --env DIST_PATH=../dist --progress --display-reasons --display-used-exports --display-provided-exports --display-chunks --display-max-modules 99999 --display-origins --display-entrypoints --config config/webpack/prod.js",
"analyze": "webpack --env NODE_ENV=production --env production --config config/webpack/prod.js --profile --json > config/webpack/stats.json && node_modules/.bin/webpack-bundle-analyzer config/webpack/stats.json",
"concat_dts": "./node_modules/typescript/bin/tsc --allowSyntheticDefaultImports --esModuleInterop --moduleResolution node config/webpack/dts_concat.ts; node config/webpack/dts_concat.js",
"renameMJS": "mv dist/index.mjs dist/index.js",
"tsc_esbuild": "./node_modules/typescript/bin/tsc config/esbuild/esbuild.ts --moduleResolution node",
"build_with_esbuild": "yarn tsc_esbuild && yarn esbuild",
"esbuild": "node config/esbuild/esbuild.js",
"build_folder_delete": "rm -rf dist/*",
"build_folder_remove_unneeded": "rm -rf dist/config && rm -rf dist/tests",
"cp_types": "cp dist/src/index.d.ts dist/"
},
"dependencies": {
"@polygonjs/polygonjs": "^1.3.4",
"mapbox-gl": "2.7.1"
},
"devDependencies": {
"@types/mapbox-gl": "2.6.3",
"@types/qunit": "2.11.3",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"compression-webpack-plugin": "9.2.0",
"esbuild": "0.14.25",
"eslint": "8.10.0",
"html-webpack-plugin": "5.5.0",
"prettier": "2.5.1",
"qunit": "2.17.2",
"terser-webpack-plugin": "4.2.2",
"ts-declaration-webpack-plugin": "1.2.3",
"ts-loader": "9.2.7",
"ts-shader-loader": "1.0.6",
"tslib": "2.3.1",
"typescript": "4.4.4",
"webpack": "5.70.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0"
}
}