-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
154 lines (154 loc) · 3.78 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "unplugin-fluent-vue",
"type": "module",
"version": "1.3.2",
"packageManager": "pnpm@10.3.0",
"description": "unplugin for fluent-vue. Adds support for custom blocks in Vue SFC and external ftl files.",
"author": {
"name": "Ivan Demchuk",
"email": "ivan.demchuk@gmail.com",
"url": "https://demivan.me"
},
"license": "MIT",
"homepage": "https://fluent-vue.demivan.me/integrations/unplugin.html",
"repository": {
"type": "git",
"url": "git+https://github.com/fluent-vue/unplugin-fluent-vue.git"
},
"keywords": [
"unplugin",
"vue",
"fluent-vue",
"ftl",
"fluent",
"webpack",
"vite",
"i18n",
"plural"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": "./*",
"./rollup": {
"import": {
"types": "./dist/rollup.d.ts",
"default": "./dist/rollup.js"
},
"require": {
"types": "./dist/rollup.d.cts",
"default": "./dist/rollup.cjs"
}
},
"./vite": {
"import": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
},
"require": {
"types": "./dist/vite.d.cts",
"default": "./dist/vite.cjs"
}
},
"./webpack": {
"import": {
"types": "./dist/webpack.d.ts",
"default": "./dist/webpack.js"
},
"require": {
"types": "./dist/webpack.d.cts",
"default": "./dist/webpack.cjs"
}
},
"./nuxt": {
"import": {
"types": "./dist/nuxt.d.ts",
"default": "./dist/nuxt.js"
},
"require": {
"types": "./dist/nuxt.d.cts",
"default": "./dist/nuxt.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prepare": "husky",
"release": "dotenv release-it"
},
"peerDependencies": {
"@nuxt/kit": "^3"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
}
},
"dependencies": {
"@fluent/syntax": "^0.19.0",
"@rollup/pluginutils": "^5.0.0",
"@vue/compiler-core": "^3.4.21",
"magic-string": "^0.30.0",
"unplugin": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@nuxt/kit": "^3.15.2",
"@nuxt/schema": "^3.15.2",
"@release-it-plugins/lerna-changelog": "7.0.0",
"@types/node": "22.10.9",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-istanbul": "^3.0.4",
"@vue/compiler-sfc": "3.5.13",
"dotenv-cli": "8.0.0",
"eslint": "9.18.0",
"execa": "9.5.2",
"husky": "9.1.7",
"lint-staged": "15.4.2",
"memfs": "4.17.0",
"release-it": "18.1.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vite": "6.0.11",
"vitest": "3.0.4",
"vue": "3.5.13",
"vue-loader": "17.4.2",
"webpack": "5.97.1"
},
"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"
}
}
}