-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "@arl/leaflet-tracksymbol2",
"version": "0.3.0",
"type": "module",
"description": "Leaflet track symbol",
"homepage": "https://org-arl.github.io/leaflet-tracksymbol2/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/org-arl/leaflet-tracksymbol2.git"
},
"exports": {
".": {
"import": "./dist/leaflet-tracksymbol2.es.js",
"require": "./dist/leaflet-tracksymbol2.umd.js",
"types": "./src/index.d.ts"
}
},
"module": "./dist/leaflet-tracksymbol2.es.js",
"main": "./dist/leaflet-tracksymbol2.umd.js",
"types": "./src/index.d.ts",
"scripts": {
"doBuild": "vite build",
"check": "tsc --noEmit && tsc-strict",
"build": "run-s check doBuild",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"typedoc": "typedoc"
},
"devDependencies": {
"@droppedcode/typedoc-plugin-copy-assets": "1.0.11",
"@types/leaflet": "1.9.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"eslint": "8.57.0",
"eslint-plugin-tsdoc": "0.2.17",
"npm-run-all": "4.1.5",
"typedoc": "0.26.6",
"typedoc-plugin-missing-exports": "3.0.0",
"typescript": "5.5.4",
"typescript-strict-plugin": "2.4.4",
"vite": "5.4.1"
},
"dependencies": {
"@flatten-js/core": "1.6.1"
},
"peerDependencies": {
"leaflet": "1.9.4"
},
"keywords": [
"leaflet",
"leaflet-plugin"
]
}