forked from jshmrtn/vue3-gettext
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.01 KB
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
{
"name": "@rareformlabs/vue3-gettext",
"version": "5.1.1",
"description": "Translate Vue 3 applications with gettext (maintained fork)",
"homepage": "https://github.com/RareFormLabs/vue3-gettext",
"author": "Leo Zurbriggen",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/RareFormLabs/vue3-gettext.git"
},
"bugs": {
"url": "https://github.com/RareFormLabs/vue3-gettext/issues"
},
"keywords": [
"gettext",
"vue",
"vue3",
"internationalization",
"i18n",
"translation",
"l10n",
"typescript"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"bin": {
"vue-gettext-compile": "./dist/gettext_compile.js",
"vue-gettext-extract": "./dist/gettext_extract.js",
"vue-gettext-translate": "./dist/gettext_translate.js",
"vue-gettext-auth": "./dist/gettext_auth.js"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:extract": "tsx --tsconfig scripts/tsconfig.json ./scripts/gettext_extract.ts",
"docs:translate": "tsx ./scripts/gettext_translate.ts",
"docs:compile": "tsx ./scripts/gettext_compile.ts",
"start": "vite serve dev",
"build": "rolldown -c rolldown.config.js && rolldown -c rolldown_scripts.config.js",
"test": "npm run test:types && npm run test:lint && npm run test:fmt && npm run test:unit",
"test:types": "vue-tsc --noEmit && vue-tsc --noEmit -p scripts && vue-tsc --noEmit -p docs/.vitepress",
"test:lint": "oxlint",
"test:fmt": "oxfmt --check",
"fmt": "oxfmt --write",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"prepublishOnly": "npm run test && npm run build",
"package:publish:next": "npm publish --tag next",
"package:publish": "npm publish"
},
"engines": {
"node": ">= 22.23.2"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.84.4",
"chalk": "^6.0.0",
"command-line-args": "^6.0.2",
"glob": "^13.0.6",
"lilconfig": "^3.1.3",
"pofile": "^1.1.4",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/node": "^24.12.4",
"@types/proper-lockfile": "^4.1.4",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/test-utils": "^2.5.0",
"happy-dom": "^20.12.0",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"rolldown-plugin-dts": "^0.28.4",
"rolldown": "^1.2.6",
"tsx": "^4.23.13",
"typescript": "npm:typescript-native-bridge@latest",
"vite": "^8.2.2",
"vitepress": "^1.6.4",
"vitest": "^4.1.11",
"vue": "^3.5.42",
"vue-tsc": "^3.3.11"
},
"exports": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
".env.gettext.example"
],
"overrides": {
"glob": {
"minimatch": "^10.2.6"
},
"typescript": "$typescript"
}
}