-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "@drovp/icon-generator",
"version": "3.0.7",
"description": "Generate .ico, .icns, or .png icons out of one or multiple png or svg files.",
"main": "dist/index.js",
"homepage": "https://github.com/drovp/icon-generator",
"bugs": "https://github.com/drovp/icon-generator/issues",
"repository": "github:drovp/icon-generator",
"keywords": [
"drovpplugin",
"ico",
"icns",
"favicon",
"svg",
"png"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "npm-run-all clean watch",
"test": "tsc -p . --noEmit",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"devDependencies": {
"@types/pngjs": "^6.0.1",
"@types/sharp": "^0.31.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@drovp/types": "^4.11.0",
"imagemin": "^8.0.1",
"imagemin-pngquant": "^9.0.2",
"jimp": "^0.16.2",
"pngjs": "^6.0.0",
"sharp": "^0.31.2"
}
}