forked from vinayakkulkarni/v-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@spatialmedia/v-mapbox",
"version": "3.2.4",
"description": "Mapbox with Vue 💚",
"type": "module",
"types": "types/index.d.ts",
"main": "dist/v-mapbox.cjs.js",
"module": "dist/v-mapbox.esm.js",
"unpkg": "dist/v-mapbox.js",
"jsdelivr": "dist/v-mapbox.js",
"cdn": "dist/v-mapbox.min.js",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rimraf dist && npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.ts",
"bundle:min": "rollup -c build/rollup.config.min.ts",
"build:dts": "vue-tsc --declaration --emitDeclarationOnly --skipLibCheck && npm run lintfix",
"prepare": "npm run build",
"docs:dev": "vuepress dev docs --port 3000",
"docs:build": "vuepress build docs",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:css",
"lintfix": "npm run lint:prettier:fix && npm run lint:eslint:fix && npm run lint:css:fix",
"lint:js": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:css": "stylelint \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"peerDependencies": {
"mapbox-gl": "1.13.2",
"vue": "^3.2.36"
},
"optionalDependencies": {
"@deck.gl/core": "^8.7.10",
"@deck.gl/layers": "^8.7.10",
"@deck.gl/mapbox": "^8.7.10"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@deck.gl/core": "^8.7.10",
"@deck.gl/layers": "^8.7.10",
"@deck.gl/mapbox": "^8.7.10",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-sucrase": "^4.0.4",
"@types/mapbox-gl": "1.13.3",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/runtime-dom": "^3.2.36",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"mapbox-gl": "1.13.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.4",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.52.1",
"shipjs": "^0.24.4",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"typescript": "^4.7.2",
"vue": "^3.2.36",
"vue-tsc": "^0.37.5",
"vuepress": "^2.0.0-beta.35"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"maplibre-gl-js",
"maplibre-gl"
],
"author": {
"email": "developers@geospoc.com",
"name": "GeoSpoc Dev Team",
"url": "https://geospoc.com"
},
"contributors": [
{
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/spatialmedia/v-mapbox.git"
},
"private": false,
"sideEffects": [
"*.css"
],
"bugs": {
"url": "git+https://github.com/spatialmedia/v-mapbox/issues"
},
"homepage": "https://v-mapbox.geospoc.io/"
}