forked from s00d/nuxt-i18n-micro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.63 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
116
117
118
119
{
"name": "nuxt-i18n-micro",
"version": "1.65.2",
"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",
"default": "./dist/module.mjs"
},
"./utils": "./dist/utils.mjs"
},
"main": "./dist/module.cjs",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"internals.d.ts"
],
"scripts": {
"prepack": "pnpm --filter \"./packages/**\" run build && nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && pnpm 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": "pnpm run lint && pnpm run typecheck && pnpm run test:types && pnpm run test && pnpm run test:workspaces && pnpm run prepack && changelogen --release && pnpm publish -r && 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",
"test:workspaces": "pnpm recursive run test",
"client:build": "nuxi generate client",
"client:prepare": "nuxi client:prepare client",
"client:dev": "nuxi dev client --port 3300",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"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.7.0",
"@nuxt/kit": "^3.15.2",
"chokidar": "^3.6.0",
"globby": "^14.0.2",
"nuxt-i18n-micro-core": "workspace:*",
"nuxt-i18n-micro-test-utils": "workspace:*",
"nuxt-i18n-micro-types": "workspace:*",
"sirv": "^2.0.4",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/devtools": "^1.7.0",
"@nuxt/devtools-ui-kit": "^1.7.0",
"@nuxt/eslint-config": "0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.2",
"@nuxt/test-utils": "^3.15.4",
"@playwright/test": "^1.49.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"changelogen": "^0.5.7",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nuxt": "^3.15.2",
"ts-jest": "^29.2.5",
"typescript": "5.6.3",
"vitepress": "^1.5.0",
"vitest": "^3.0.2",
"vue-tsc": "2.1.10"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1",
"@rollup/rollup-win32-x64-msvc": "^4.28.1"
},
"workspaces": [
"client",
"test/fixtures/**/*"
],
"build": {
"entries": [
"./src/utils"
]
},
"packageManager": "[email protected]"
}