-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "maplibre-gl-temporal-control",
"type": "module",
"version": "1.2.0",
"description": "Temporal Control plugin for Maplibre GL JS",
"scripts": {
"test": "vitest src --coverage --coverage.provider=v8",
"build": "vite build -c vite.config.example.ts",
"build:pkg": "vite build && tsc",
"prepare": "npm run build:pkg",
"dev": "vite -c vite.config.example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mug-jp/maplibre-gl-temporal-controller.git"
},
"author": "Kanahiro Iguchi <[email protected]> (https://github.com/Kanahiro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mug-jp/maplibre-gl-temporal-controller/issues"
},
"homepage": "https://github.com/mug-jp/maplibre-gl-temporal-controller#readme",
"devDependencies": {
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"jma-utils": "^0.1.0",
"maplibre-gl": "^5.0.0",
"playwright": "^1.49.1",
"rollup-plugin-visualizer": "^5.13.1",
"typescript": "^4.9.5",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"main": "./build/index.umd.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"exports": {
".": {
"require": "./build/index.umd.cjs",
"import": "./build/index.js"
}
}
}