-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 3.06 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
{
"name": "nuxt-i18n-micro",
"version": "1.33.0",
"description": "Nuxt I18n Micro is a lightweight, high-performance internationalization module for Nuxt, designed to handle multi-language support with minimal overhead, fast build times, and efficient runtime performance.",
"repository": "s00d/nuxt-i18n-micro",
"license": "MIT",
"type": "module",
"author": {
"name": "s00d",
"email": "[email protected]",
"url": "https://s00d.github.io/"
},
"keywords": [
"nuxt",
"i18n",
"internationalization",
"localization",
"multi-language",
"translation",
"nuxt-module",
"performance",
"seo",
"nuxt3"
],
"homepage": "https://github.com/s00d/nuxt-i18n-micro",
"bugs": {
"url": "https://github.com/s00d/nuxt-i18n-micro/issues"
},
"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",
"internals.d.ts"
],
"scripts": {
"prepack": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"dev:generate": "nuxi generate playground",
"release": "npm run lint && npm run typecheck && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "playwright test",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"typecheck": "tsc --noEmit",
"typecheck:nuxt": "nuxt typecheck --no-emit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:clean-dev": "vitepress dev docs --clean-cache",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.4.2",
"@nuxt/kit": "^3.13.1",
"chokidar": "^3.6.0",
"sirv": "^2.0.4",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/devtools": "^1.4.2",
"@nuxt/devtools-ui-kit": "^1.4.2",
"@nuxt/eslint-config": "0.5.5",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.2",
"@playwright/test": "^1.47.0",
"@types/node": "^20.14.11",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"nuxt": "^3.13.1",
"typescript": "5.5.4",
"vitepress": "^1.3.4",
"vitest": "^2.0.5",
"vue-tsc": "2.0.22"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6",
"@rollup/rollup-win32-x64-msvc": "^4.9.6"
},
"workspaces": [
"client",
"test/fixtures/**/*"
],
"packageManager": "[email protected]+sha256.7bf0c78a106332886ea4e59641fd819b1af953edcd72c4d93a32b1c71000ee67"
}