-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "nuxt-zod-i18n",
"version": "1.11.5",
"description": "A Nuxt Module for localizing zod error messages.",
"repository": "xibman/nuxt-zod-i18n",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"check": "npm run lint:fix",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs:build": "nuxi build docs",
"docs:dev": "nuxi dev docs",
"docs:generate": "nuxi generate docs",
"docs:preview": "nuxi preview docs",
"fix": "npm run lint:fix",
"i18n:download": "localazy download && pnpm fix",
"i18n:upload": "localazy upload",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"prepack": "nuxt-module-build build",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"typecheck": "npx nuxi typecheck",
"prepare": "husky"
},
"dependencies": {
"@intlify/shared": "^11.0.1",
"@nuxt/kit": "^3.15.0",
"dedupe": "^4.0.3",
"defu": "^6.1.4",
"vue-tsc": "^2.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@localazy/cli": "^1.7.15",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.0",
"@nuxt/test-utils": "^3.15.1",
"@nuxtjs/i18n": "^9.1.1",
"@types/node": "^22.10.5",
"changelogen": "^0.5.7",
"eslint": "^9.17.0",
"eslint-plugin-jsonc": "^2.18.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nuxt": "^3.15.0",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,ts,vue,json,md,yml}": "eslint"
},
"pnpm": {
"overrides": {
"typescript@5.7.2": "5.6.3"
}
},
"packageManager": "pnpm@9.15.2"
}