-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
64
65
66
67
{
"name": "@w3geo/vue-place-search",
"private": false,
"version": "1.1.1",
"type": "module",
"files": [
"dist/"
],
"main": "./dist/vue-place-search.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/w3geo/vue-place-search.git"
},
"keywords": [
"search",
"places",
"austria",
"vue3",
"vue"
],
"module": "./dist/vue-place-search.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-place-search.js"
},
"./dist/style.css": {
"import": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"prepublish": "npm run build",
"watch": "nodemon --watch src -e js,json,mjs,vue --exec 'npm run build'",
"test": "npm run lint && npm run typecheck",
"lint": "eslint . --fix && prettier --check src/ *.js",
"format": "prettier --write src/ *.js",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^10.1.0",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.30.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-vuetify": "^2.0.3",
"vue-tsc": "^2.0.21"
},
"peerDependencies": {
"@types/geojson": "^7946.0.14",
"ol": "*",
"vue": "^3.0.0",
"vuetify": "^3.6.12"
},
"dependencies": {
"quick-score": "^0.2.0"
}
}