vue-multi-router 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +92 -0
- package/dist/index.d.ts +356 -0
- package/dist/index.js +1028 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vue-multi-router",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Vue 3 multi router",
|
|
6
|
+
"author": "",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/lviobio/vue-multi-router#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/lviobio/vue-multi-router.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/lviobio/vue-multi-router/issues"
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./dist/index.js",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"module": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsdown",
|
|
31
|
+
"dev": "tsdown --watch",
|
|
32
|
+
"check": "npm run ts:check && npm run lint:check && npm run format:check && npm run dependency-cruiser:check",
|
|
33
|
+
"ts:check": "vue-tsc --noEmit",
|
|
34
|
+
"format": "prettier --write src/ playground/src",
|
|
35
|
+
"format:check": "prettier --check src/ playground/src",
|
|
36
|
+
"lint": "eslint . --fix",
|
|
37
|
+
"lint:check": "eslint .",
|
|
38
|
+
"dependency-cruiser:check": "depcruise --config .dependency-cruiser.cjs src playground",
|
|
39
|
+
"play": "vite --port 5174",
|
|
40
|
+
"build:playground": "vite build",
|
|
41
|
+
"preview:playground": "vite preview --outDir playground/dist",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"release": "bumpp && npm publish",
|
|
44
|
+
"prepublishOnly": "npm run check && npm run test && npm run build"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"vue": "^3.5.0",
|
|
48
|
+
"vue-router": "^4.0.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
52
|
+
"@types/lodash": "^4.17.21",
|
|
53
|
+
"@types/node": "^25.0.3",
|
|
54
|
+
"@vicons/ionicons5": "^0.13.0",
|
|
55
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
56
|
+
"@vitest/browser-playwright": "^4.0.16",
|
|
57
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
58
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
59
|
+
"@vue/test-utils": "^2.4.6",
|
|
60
|
+
"@vueuse/core": "^14.1.0",
|
|
61
|
+
"bumpp": "^10.3.2",
|
|
62
|
+
"dependency-cruiser": "^17.3.6",
|
|
63
|
+
"eslint": "^9.39.2",
|
|
64
|
+
"eslint-config-prettier": "^10.1.8",
|
|
65
|
+
"eslint-plugin-vue": "^10.6.2",
|
|
66
|
+
"happy-dom": "^20.1.0",
|
|
67
|
+
"jsdom": "^27.4.0",
|
|
68
|
+
"naive-ui": "^2.43.2",
|
|
69
|
+
"playwright": "^1.57.0",
|
|
70
|
+
"prettier": "^3.7.4",
|
|
71
|
+
"tailwindcss": "^4.1.18",
|
|
72
|
+
"tsdown": "^0.18.4",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"typescript-eslint": "^8.51.0",
|
|
75
|
+
"vite": "^7.3.0",
|
|
76
|
+
"vitest": "^4.0.16",
|
|
77
|
+
"vitest-browser-vue": "^2.0.1",
|
|
78
|
+
"vue": "^3.5.26",
|
|
79
|
+
"vue-router": "^4.6.4",
|
|
80
|
+
"vue-tsc": "^3.2.1"
|
|
81
|
+
}
|
|
82
|
+
}
|