-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.6 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
{
"name": "@geoql/v-mapkit.js",
"version": "0.3.0",
"description": "MapKit with the power of Vue 3",
"main": "./dist/v-mapkit.js",
"module": "./dist/v-mapkit.js",
"umd": "./dist/v-mapkit.umd.js",
"unpkg": "./dist/v-mapkit.mjs",
"jsdelivr": "./dist/v-mapkit.mjs",
"cdn": "./dist/v-mapkit.min.js",
"exports": {
".": {
"import": "./dist/v-mapkit.js",
"require": "./dist/v-mapkit.umd.js"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && prettier --write dist/*{mjs,js,ts}",
"test": "echo 'test!'",
"prepare": "husky install",
"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|docs|example)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist|docs|example)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist|docs|example)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist|docs|example)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:css": "stylelint \"{,!(node_modules|dist|docs|example)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist|docs|example)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"release": "shipjs prepare",
"release:dry": "shipjs prepare --dry-run",
"release:auto": "shipjs prepare --yes"
},
"peerDependencies": {
"@vueuse/core": "^10.8.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/apple-mapkit-js-browser": "^5.65.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.59.9",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/compiler-sfc": "^3.3.4",
"@vue/runtime-dom": "^3.2.47",
"@vueuse/core": "^10.8.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vue": "^9.14.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"node-sass": "^9.0.0",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"sass": "^1.69.6",
"shipjs": "0.26.3",
"stylelint": "^15.7.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-prettier": "^3.0.0",
"typescript": "^4.9.5",
"vite": "^3.2.4",
"vue": "^3.3.4",
"vue-tsc": "^1.6.5"
},
"keywords": [
"MapKit",
"Apple MapKit",
"Vue MapKit",
"Maps",
"Map Library",
"v-mapkit.js",
"vue-mapkit.js"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.1.1"
},
"repository": {
"url": "git+https://github.com/geoql/v-mapkit.js",
"type": "git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/geoql/v-mapkit.js/issues"
},
"homepage": "https://github.com/geoql/v-mapkit.js#readme"
}