-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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": "@maptiler/marker-layout",
"version": "1.2.0",
"description": "Maker layout manager for MapTiler SDK, frontend framework agnostic",
"module": "dist/maptiler-marker-layout.mjs",
"types": "dist/maptiler-marker-layout.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/maptiler-marker-layout.mjs",
"types": "./dist/maptiler-marker-layout.d.ts"
}
},
"author": "MapTiler Team",
"homepage": "https://docs.maptiler.com",
"repository": {
"type": "git",
"url": "https://github.com/maptiler/maptiler-marker-layout.git"
},
"keywords": [
"maptiler",
"plugin",
"data"
],
"scripts": {
"format": "prettier -c \"src/**/*.{js,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"format:fix": "prettier --write \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"make": "npm run format:fix && npm run lint:fix && npm run build",
"dev": "vite -c vite.config-es.ts",
"build": "npm run build-es; npm run build-umd",
"build-dev": "NODE_ENV=development npm run build-es; NODE_ENV=development npm run build-umd",
"build-umd": "tsc && vite build -c vite.config-umd.ts",
"build-es": "tsc && vite build -c vite.config-es.ts",
"build-umd-dev-watch": "tsc && NODE_ENV=development vite build -w -c vite.config-umd.ts"
},
"license": "",
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"@maptiler/sdk": "^2.3.0"
}
}