-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "@leanera/nuxt-i18n",
"type": "module",
"version": "0.5.1",
"packageManager": "[email protected]",
"description": "Nuxt 3 module for internationalization w/ locale auto-imports & localized routing",
"author": "LeanERA GmbH <https://github.com/leanera>",
"license": "MIT",
"homepage": "https://github.com/leanera/nuxt-i18n#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/leanera/nuxt-i18n.git"
},
"bugs": "https://github.com/leanera/nuxt-i18n/issues",
"keywords": [
"nuxt",
"nuxt3",
"i18n"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "tsc --noEmit",
"release": "bumpp --commit --push --tag",
"prepare": "nuxi prepare playground",
"prepack": "nuxt-module-build"
},
"dependencies": {
"@leanera/vue-i18n": "^0.5.0",
"@nuxt/kit": "^3.7.1",
"knitwork": "^1.0.0",
"pathe": "^1.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.0",
"@leanera/nuxt-i18n": "workspace:*",
"@nuxt/module-builder": "^0.5.1",
"@nuxt/test-utils": "^3.7.1",
"@types/node": "^20.5.9",
"bumpp": "^9.2.0",
"eslint": "^8.48.0",
"nuxt": "^3.7.1",
"typescript": "^5.2.2",
"vitest": "^0.34.3",
"vue-tsc": "^1.8.10"
}
}