-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.1 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
{
"author": {
"name": "Nicolas Cadilhac",
"email": "cadilhac@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cadilhac/vue3-router-ex.git"
},
"private": false,
"name": "@cadilhac/vue3-router-ex",
"version": "1.0.0",
"description": "A plugin for Vue 3 that extends Vue Router with a dash of resolves, states and reachable named views.",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"router",
"route",
"vue-router",
"state-router",
"plugin",
"vue-plugin",
"guard",
"resolve"
],
"type": "module",
"files": [
"dist",
"CHANGELOG.md"
],
"main": "./dist/vue3-router-ex.umd.cjs",
"module": "./dist/vue3-router-ex.js",
"exports": {
".": {
"import": "./dist/vue3-router-ex.js",
"require": "./dist/vue3-router-ex.umd.cjs"
},
"./styles": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
"vite": "^5.0.0"
}
}