This repository has been archived by the owner on Sep 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.14 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
{
"name": "fluent-vue-loader",
"version": "3.0.1",
"description": "Webpack loader with custom block support for fluent-vue",
"keywords": [
"localization",
"l10n",
"internationalization",
"i18n",
"ftl",
"locale",
"language",
"formatting",
"translate",
"translation",
"format",
"vue",
"vuejs",
"vue.js",
"webpack",
"loader"
],
"author": "Ivan Demchuk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fluent-vue/fluent-vue-loader"
},
"homepage": "https://fluent-vue.demivan.me/integrations/webpack.html",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint .",
"test": "jest"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"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"
}
},
"devDependencies": {
"@fluent/bundle": "0.17.0",
"@types/jest": "27.0.2",
"@types/loader-utils": "2.0.3",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@vue/compiler-sfc": "3.2.20",
"eslint": "8.1.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"execa": "5.1.1",
"jest": "27.3.1",
"memfs": "3.3.0",
"ts-jest": "27.0.7",
"tsup": "5.5.0",
"typescript": "4.4.4",
"vue": "3.2.20",
"vue-loader": "16.8.2",
"webpack": "5.61.0"
}
}