forked from johannschopplich/nuxt-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "@globalbrain/nuxt-i18n",
"version": "1.3.0",
"packageManager": "[email protected]",
"description": "Minimal module for i18n with locale auto-imports & localized routing",
"author": "Divyansh Singh <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/globalbrain/nuxt-i18n.git"
},
"bugs": "https://github.com/globalbrain/nuxt-i18n/issues",
"keywords": [
"nuxt",
"nuxt3",
"i18n"
],
"exports": {
".": {
"types": "./dist/types.d.mts",
"default": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"type": "vue-tsc --noEmit",
"lint": "eslint . --fix",
"lint:fail": "eslint .",
"vitest": "vitest",
"vitest:run": "vitest run",
"test": "pnpm run type && pnpm run lint && pnpm run vitest:run",
"test:fail": "pnpm run type && pnpm run lint:fail && pnpm run vitest:run",
"release": "release-it",
"prepare": "nuxt-module-build prepare",
"prepack": "nuxt-module-build build"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"defu": "^6.1.4",
"knitwork": "^1.1.0",
"radix3": "^1.1.2"
},
"devDependencies": {
"@globalbrain/eslint-config": "^1.6.0",
"@nuxt/module-builder": "^0.6.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.12.10",
"eslint": "^8.57.0",
"nuxt": "^3.11.2",
"release-it": "^17.2.1",
"typescript": "^5.4.5",
"unctx": "^2.3.1",
"vitest": "1.6.0",
"vue-tsc": "^1.8.27"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}