forked from vinayakkulkarni/v-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
130 lines (130 loc) · 4.26 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
127
128
129
130
{
"name": "v-mapbox",
"version": "3.3.1",
"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": "husky install",
"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.37"
},
"optionalDependencies": {
"@deck.gl/core": "^8.8.3",
"@deck.gl/layers": "^8.8.3",
"@deck.gl/mapbox": "^8.8.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@deck.gl/core": "^8.8.3",
"@deck.gl/layers": "^8.8.3",
"@deck.gl/mapbox": "^8.8.3",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-sucrase": "^4.0.4",
"@types/mapbox-gl": "1.13.3",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/runtime-dom": "^3.2.37",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mapbox-gl": "1.13.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.53.0",
"shipjs": "^0.24.4",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^28.0.0",
"typescript": "^4.7.4",
"vue": "^3.2.37",
"vue-tsc": "^0.40.1",
"vuepress": "^2.0.0-beta.35"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"maplibre-gl-js",
"maplibre-gl"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": {
"email": "[email protected]",
"name": "GeoSpoc Dev Team",
"url": "https://geospoc.com"
},
"contributors": [
{
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:geospoc/v-mapbox.git"
},
"private": false,
"sideEffects": [
"*.css"
],
"bugs": {
"url": "https://github.com/geospoc/v-mapbox/issues"
},
"homepage": "https://v-mapbox.geospoc.io/"
}