-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "vue-smart-routes",
"private": false,
"version": "0.2.0",
"description": "A safer way to manage your routes in Vue Router",
"homepage": "https://github.com/Xkonti/vue-smart-routes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Xkonti/vue-smart-routes"
},
"keywords": ["vue", "router", "routes", "types"],
"author": "Beniamin (Xkonti) Dudek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xkonti/vue-smart-routes/issues"
},
"type": "module",
"main": "./dist/vue-smart-routes.umd.cjs",
"module": "./dist/vue-smart-routes.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-smart-routes.js",
"require": "./dist/vue-smart-routes.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"dependencies": {
"vue-router": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"typescript": "^5.1.0",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-eslint": "^1.8.0",
"vitest": "^0.33.0"
}
}