-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
{
"name": "mapboxgl-timeline",
"version": "1.0.0",
"description": "Mapbox timeline slider control",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src && stylelint 'src/**/*.scss'",
"build": "vite build",
"prepare": "npm run build",
"dev": "vite"
},
"keywords": [
"mapbox",
"mapboxgl",
"plugin",
"slider",
"timeline",
"style"
],
"author": "Marc Vilella <[email protected]> (https://github.com/markusand)",
"repository": {
"type": "git",
"url": "git+https://github.com/markusand/mapboxgl-timeline.git"
},
"bugs": {
"url": "https://github.com/markusand/mapboxgl-timeline/issues"
},
"homepage": "https://github.com/markusand/mapboxgl-timeline",
"license": "MIT",
"devDependencies": {
"@types/mapbox-gl": "^2.7.5",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.23.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"mapbox-gl": "^2.10.0",
"sass": "^1.54.8",
"stylelint": "^14.11.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1",
}
}