-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
140 lines (140 loc) · 4.33 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
131
132
133
134
135
136
137
138
139
140
{
"name": "v-mapbox",
"version": "5.1.0",
"description": "Maplibre (and Mapbox) with Vue 💚",
"main": "./dist/v-mapbox.js",
"module": "./dist/v-mapbox.js",
"umd": "./dist/v-mapbox.umd.cjs",
"unpkg": "./dist/v-mapbox.cjs",
"jsdelivr": "./dist/v-mapbox.cjs",
"cdn": "./dist/v-mapbox.min.js",
"exports": {
".": {
"import": "./dist/v-mapbox.js",
"require": "./dist/v-mapbox.umd.cjs"
},
"./dist/v-mapbox.css": {
"import": "./dist/v-mapbox.css",
"require": "./dist/v-mapbox.css"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf dist && vite build && vue-tsc --declaration --emitDeclarationOnly && prettier --write ./dist/*{cjs,js,ts}",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve 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",
"prepare": "is-ci || husky",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"peerDependencies": {
"maplibre-gl": "^4.0.0",
"vue": "^3.4.15"
},
"optionalDependencies": {
"@deck.gl/core": "^8.9.34",
"@deck.gl/layers": "^8.9.34",
"@deck.gl/mapbox": "^8.9.34"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@deck.gl/core": "^8.9.34",
"@deck.gl/layers": "^8.9.34",
"@deck.gl/mapbox": "^8.9.34",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/runtime-dom": "^3.4.27",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-regexp": "^2.5.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vue": "^9.26.0",
"happy-dom": "^14.11.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"maplibre-gl": "^4.3.2",
"postcss-html": "^1.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"sass": "^1.77.2",
"shipjs": "^0.26.3",
"stylelint": "16.5.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-prettier": "5.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitepress": "^1.2.0",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vue-tsc": "^2.0.19"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"maplibre-gl-js",
"maplibre-gl"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": {
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
},
"contributors": [
{
"email": "[email protected]",
"name": "GeoSpoc Dev Team",
"url": "https://geospoc.com"
}
],
"license": "MIT",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"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/"
}