-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "@jawg/types",
"version": "1.2.0",
"description": "Shared TypeScript definitions for Jawg Maps projects",
"types": "./index.d.ts",
"type": "module",
"typeScriptVersion": "2.3",
"scripts": {
"docs": "typedoc --out docs index.d.ts",
"start": "rollup -c -w",
"test": "tsc --esModuleInterop --lib es6,dom --noEmit test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jawg/types.ts.git"
},
"keywords": [
"api",
"typescript",
"maps"
],
"author": "Jawg Maps <contact@jawg.io>",
"license": "MIT",
"files": [
"src/*",
"README.md",
"tsconfig.json",
"index.d.ts",
"packages.json"
],
"bugs": {
"url": "https://github.com/jawg/types.ts/issues"
},
"homepage": "https://jawg.github.io/types.ts",
"devDependencies": {
"prettier": "^3.1.1",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-serve": "^1.1.1",
"typedoc": "^0.26.11",
"typedoc-plugin-ga": "1.0.4",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/geojson": "^7946.0.7",
"@types/leaflet": "^1.7.3",
"@types/mapbox-gl": "^1.13.2",
"maplibre-gl": "^4.7.1"
}
}