-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "maplibre-gl-basemaps",
"version": "0.1.3",
"main": "./lib/index.js",
"description": "Basemaps Control for MapLibre GL",
"author": "Kaveh Karimi <[email protected]>",
"homepage": "https://github.com/ka7eh/maplibre-gl-basemaps",
"repository": {
"type": "git",
"url": "git+https://github.com/ka7eh/maplibre-gl-basemaps.git"
},
"keywords": [
"maplibre-gl",
"mapbox-gl",
"basemaps"
],
"license": "ISC",
"type": "module",
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write ./src/**/*.ts",
"watch": "rollup -c --watch & sass --watch src/index.scss:lib/basemaps.css",
"build": "rollup -c --compact && sass src/index.scss:lib/basemaps.css",
"examples": "npm run build & node server.js",
"dev": "node server.js & npm run watch"
},
"devDependencies": {
"@eslint/js": "^9.17",
"@rollup/plugin-typescript": "^12.1",
"eslint": "^9.17",
"eslint-config-prettier": "^10.0",
"eslint-plugin-react-hooks": "^5.0",
"eslint-plugin-react-refresh": "^0.4",
"globals": "^15.14",
"typescript-eslint": "^8.19",
"gh-pages": "^6.3",
"maplibre-gl": "^5.0",
"prettier": "^3.4",
"rollup": "^4.32",
"sass": "^1.83",
"tslib": "^2.8",
"typescript": "^5.7"
},
"peerDependencies": {
"maplibre-gl": ">=1"
},
"files": [
"lib"
]
}