-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "vue-localer",
"version": "1.5.3",
"description": "Internationalization plugin for Vue.",
"main": "./dist/vue-localer.cjs",
"module": "./dist/vue-localer.js",
"types": "./dist/src/vue-localer.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/vue-localer.d.ts",
"default": "./dist/vue-localer.js"
},
"require": {
"types": "./dist/src/vue-localer.d.ts",
"default": "./dist/vue-localer.cjs"
}
}
},
"scripts": {
"build": "vite build",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/vue-localer.git"
},
"keywords": [
"vue",
"i18n",
"l10n",
"translation"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/vue-localer/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/vue-localer#readme",
"dependencies": {
"message-interpolation": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^14.10.1",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vue": "^3.4.27"
}
}