-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "maplibre_symbol_utils",
"version": "0.1.3",
"description": "Utilities for extending MapLibre symbols",
"main": "dist/maplibre_symbol_utils.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"scripts": {
"build:tsc": "tsc && tsc --module CommonJS --outDir dist/cjs && tsc --module ESNext --outDir dist",
"build:rollup": "rollup --config rollup.config.js --bundleConfigAsCjs",
"build": "npm run build:tsc && npm run build:rollup",
"postbuild": "node postbuild.js",
"postbuild:unix": "cp dist/index.d.ts dist/maplibre_symbol_utils.d.ts",
"postbuild:win": "copy dist\\index.d.ts dist\\maplibre_symbol_utils.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bogind/maplibre_symbol_utils.git"
},
"bugs": {
"url": "https://github.com/bogind/maplibre_symbol_utils/issues"
},
"homepage": "https://github.com/bogind/maplibre_symbol_utils",
"keywords": [
"maplibre",
"image",
"symbol",
"marker"
],
"author": "Dror Bogin",
"license": "ISC",
"dependencies": {
"maplibre-gl": "^4.0.0"
},
"peerDependencies": {
"maplibre-gl": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"maplibre-gl": "^4.0.0",
"os": "^0.1.2",
"rollup": "^4.17.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.5"
}
}