-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
115 lines (115 loc) · 3.61 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
109
110
111
112
113
114
115
{
"name": "nuxt-typed-router",
"version": "3.7.0",
"description": "Provide autocompletion for routes paths, names and params in Nuxt apps",
"type": "module",
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"prepare:playground": "nuxi prepare playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground && pnpm run test:prepare-fixtures",
"build:test": "cross-env NUXT_BUILD_TYPE=stub pnpm run prepack && pnpm run dev:build",
"test:prepare-fixtures": "nuxi prepare test/fixtures/simple && nuxi prepare test/fixtures/withOptions && nuxi prepare test/fixtures/complex",
"test:fixtures": "vitest run --dir test",
"test:types": "pnpm run typecheck && pnpm run test:vue",
"test:vue": "vue-tsc -p test/fixtures/simple/tsconfig.json --noEmit && vue-tsc -p test/fixtures/complex/tsconfig.json --noEmit",
"test": "pnpm run dev:prepare && pnpm run test:types && pnpm run test:fixtures",
"lint": "eslint --ext .ts --ext .vue .",
"docs:dev": "cd docs && pnpm run dev",
"docs:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs:build": "npm run docs:prepare && cd docs && nuxi generate",
"typecheck": "tsc --noEmit",
"release": "bumpp && npm publish && git push --follow-tags"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nuxt typed router",
"nuxt router",
"nuxt typed",
"nuxt safe router",
"nuxt typed routes",
"nuxt generate route ts",
"nuxt 3",
"nuxt 3 router"
],
"homepage": "https://nuxt-typed-router.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/victorgarciaesgi/nuxt-typed-router.git"
},
"author": {
"name": "Victor Garcia",
"url": "https://github.com/victorgarciaesgi"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/victorgarciaesgi/nuxt-typed-router/issues"
},
"peerDependencies": {
"prettier": "^2.5.x || 3.x"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"chalk": "5.3.0",
"defu": "6.1.4",
"lodash-es": "4.17.21",
"log-symbols": "7.0.0",
"mkdirp": "3.0.1",
"nanoid": "5.0.7",
"pathe": "1.1.2",
"prettier": "3.3.3"
},
"devDependencies": {
"@intlify/core-base": "9.14",
"@intlify/message-compiler": "9.14",
"@intlify/shared": "9.14",
"@intlify/vue-i18n-bridge": "1.1.0",
"@intlify/vue-router-bridge": "1.1.0",
"@nuxt/content": "2.13.2",
"@nuxt/devtools": "1.5.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.13.2",
"@nuxt/test-utils": "3.14.2",
"@nuxt/types": "2.18.1",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/i18n": "8.5.5",
"@nuxtjs/web-vitals": "0.2.7",
"@playwright/test": "1.47.2",
"@types/lodash-es": "4.17.12",
"@types/node": "22.7.2",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"@vue/test-utils": "2.4.6",
"bumpp": "9.5.2",
"changelogithub": "0.13.10",
"cross-env": "7.0.3",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.28.0",
"nuxt": "3.13.2",
"nuxt-seo-kit": "1.3.13",
"playwright": "1.47.2",
"tsd": "0.31.2",
"typescript": "5.6.2",
"vitest": "2.1.1",
"vue": "3.5.8",
"vue-eslint-parser": "9.4.3",
"vue-i18n": "9.14",
"vue-router": "4.4.5",
"vue-tsc": "2.1.6"
}
}