forked from fluent-vue/fluent-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "fluent-vue",
"version": "3.2.0",
"description": "Internationalization plugin for Vue.js. Project Fluent bindings for Vue.js",
"author": "Ivan Demchuk <[email protected]>",
"license": "MIT",
"homepage": "https://fluent-vue.demivan.me",
"repository": {
"type": "git",
"url": "git+https://github.com/fluent-vue/fluent-vue.git"
},
"keywords": [
"localization",
"internationalization",
"i18n",
"ftl",
"locale",
"formatting",
"translate",
"translation",
"format",
"vue",
"vuejs",
"vue.js",
"ProjectFluent",
"Project Fluent"
],
"sideEffects": false,
"exports": {
".": {
"production": {
"require": "./dist/prod/index.cjs",
"import": "./dist/prod/index.mjs"
},
"types": "./index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"unpkg": "dist/prod/index.global.js",
"jsdelivr": "dist/prod/index.global.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"dist",
"README.md"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "rimraf dist && tsup",
"lint": "eslint .",
"ls-lint": "ls-lint",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "node scripts/swap-vue.mjs 3 && vitest run",
"test:watch": "node scripts/swap-vue.mjs 3 && vitest",
"test:2": "node scripts/swap-vue.mjs 2 && vitest run",
"test:3": "node scripts/swap-vue.mjs 3 && vitest run",
"prepare": "husky install"
},
"peerDependencies": {
"@fluent/bundle": ">=0.17.0",
"@vue/composition-api": ">=1.0.0-rc.1",
"vue": "^2.6.11 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"@fluent/sequence": "^0.7.0",
"cached-iterable": "^0.3.0",
"vue-demi": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@fluent/bundle": "~0.17.1",
"@fluent/dedent": "~0.4.0",
"@ls-lint/ls-lint": "^1.11.2",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@types/node": "^18.11.18",
"@vitest/coverage-istanbul": "^0.26.2",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.2.6",
"esbuild-plugin-globals": "^0.1.1",
"eslint": "^8.30.0",
"execa": "^7.0.0",
"happy-dom": "^8.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"release-it": "*",
"rimraf": "^4.1.2",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2",
"vue": "npm:vue@^3.2.45",
"vue-2": "npm:vue@^2.7.14",
"vue-3": "npm:vue@^3.2.45"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.ts?(x)": "eslint --fix"
},
"changelog": {
"labels": {
"Type: Feature": ":star: New Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improved Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
}
}