-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 2.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "1.11.0",
"name": "solid-map-gl",
"description": "Solid Component Library for Mapbox GL JS",
"info": "Solid Component Library for Mapbox GL JS. Mapbox GL JS is a JavaScript library that renders interactive maps from vector tiles and Mapbox styles using WebGL. This project is intended to be as close as possible to the Mapbox GL JS API.",
"homepage": "https://gis-hub.gitbook.io/solid-map-gl",
"author": "kaihuebner",
"contributors": [
{
"name": "Kai Huebner",
"email": "[email protected]"
}
],
"keywords": [
"gis",
"map",
"webgl",
"mapbox-gl",
"mapbox-gl-js",
"mapbox",
"maplibre",
"solidjs"
],
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"source": "dist/index/index.jsx",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"pub": "rollup -c && npm version patch && npm publish",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gishub4/solid-map-gl.git"
},
"browserList": [
"defaults",
"not ie 11"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@solidjs/testing-library": "^0.8.6",
"@testing-library/jest-dom": "^6.4.2",
"@types/mapbox-gl": "^3.1.0",
"@vitest/coverage-v8": "^1.3.1",
"jsdom": "^24.0.0",
"jsdom-worker": "^0.3.0",
"rollup": "^4.12.0",
"rollup-plugin-import-css": "^3.5.0",
"rollup-preset-solid": "^2.0.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-solid": "^2.10.1",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@babylonjs/core": "^6.24.0",
"mapbox-gl": "*",
"solid-js": "*",
"three": "^0.157.0"
},
"peerDependenciesMeta": {
"@babylonjs/core": {
"optional": true
},
"three": {
"optional": true
}
}
}