-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "generate-icon-webpack-plugin",
"version": "2.4.2",
"description": "A webpack plugin to generate icons of different sizes",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"compile": "node index.mjs",
"tsc": "tsc",
"eslint:check": "eslint src",
"eslint:fix": "eslint --fix src",
"prettier:check": "prettier --check src",
"prettier:format": "prettier --write src"
},
"keywords": [
"jimp",
"webpack",
"plugin",
"node",
"icon",
"crx"
],
"author": "kaze-k <kerkaze@outlook.com> (https://github.com/kaze-k)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kaze-k/generate-icon-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/kaze-k/generate-icon-webpack-plugin/issues"
},
"homepage": "https://github.com/kaze-k/generate-icon-webpack-plugin",
"peerDependencies": {
"webpack": ">=5.0.0"
},
"dependencies": {
"cli-table": "^0.3.11",
"jimp": "^0.22.12"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/cli-table": "^0.3.1",
"@types/node": "^20.5.0",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"log-symbols": "^6.0.0",
"ora": "^8.0.1",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}