-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
105 lines (105 loc) · 3 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
{
"name": "vue3-gettext",
"version": "3.0.0-beta.6",
"description": "Translate Vue 3 applications with gettext",
"homepage": "https://jshmrtn.github.io/vue3-gettext/",
"author": "Leo Zurbriggen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jshmrtn/vue3-gettext"
},
"keywords": [
"gettext",
"vue",
"vue3",
"internationalization",
"i18n",
"translation",
"l10n",
"typescript"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bin": {
"vue-gettext-compile": "./dist/gettext_compile.js",
"vue-gettext-extract": "./dist/gettext_extract.js"
},
"scripts": {
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs -d distDocs",
"docs:extract": "node --loader ts-node/esm ./scripts/gettext_extract.ts",
"docs:compile": "node --loader ts-node/esm ./scripts/gettext_compile.ts",
"start": "vite serve dev",
"build": "tsup",
"test": "npm run test:types && npm run test:lint && npm run test:unit",
"test:types": "tsc --noEmit",
"test:lint": "npm run test:lint:js && npm run test:lint:prettier",
"test:lint:js": "./node_modules/.bin/eslint --ext .js,.ts,.vue",
"test:lint:prettier": "./node_modules/.bin/prettier --check '**/**.(json|js|ts|vue)'",
"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": ">= 18.0.0"
},
"peerDependencies": {
"@vue/compiler-sfc": ">=3.0.0",
"vue": ">=3.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"cosmiconfig": "^9.0.0",
"gettext-extractor": "^3.8.0",
"glob": "^10.4.1",
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1",
"pofile": "^1.1.4"
},
"devDependencies": {
"@swc/core": "^1.5.28",
"@types/command-line-args": "^5.2.3",
"@types/glob": "^8.1.0",
"@types/node": "^20.14.0",
"@types/parse5": "^6.0.3",
"@types/parse5-htmlparser2-tree-adapter": "^6.0.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"@vuepress/bundler-vite": "^2.0.0-rc.12",
"@vuepress/theme-default": "^2.0.0-rc.33",
"date-fns": "^2.29.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.5.0",
"happy-dom": "^6.0.4",
"json-loader": "^0.5.7",
"markdown-it-fence": "^0.1.3",
"prettier": "^3.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vuepress": "^2.0.0-rc.12"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
]
}