-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.5 KB
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
{
"name": "localizationkeys-webpack",
"description": "Webpack plugin that generates a TypeScript localization keys class from a JSONC file.",
"version": "2.0.0",
"type": "commonjs",
"main": "./index.js",
"types": "./dist/LocalizationKeysWebpackPlugin.d.ts",
"exports": {
".": {
"types": "./dist/LocalizationKeysWebpackPlugin.d.ts",
"require": "./index.js",
"import": "./index.js"
}
},
"files": [
"index.js",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"prepack": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Alexey Ripenko <alexey@ripenko.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ripenko/localizationkeys-webpack.git"
},
"bugs": {
"url": "https://github.com/ripenko/localizationkeys-webpack/issues"
},
"homepage": "https://github.com/ripenko/localizationkeys-webpack#readme",
"keywords": [
"localization",
"localizationservice",
"webpack",
"webpack-plugin",
"jsonc",
"typescript",
"generator"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"jsonc-parser": "3.3.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.3",
"webpack": "^5.0.0"
}
}