-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 984 Bytes
/
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
{
"name": "webmanifest-generator",
"version": "1.0.2",
"description": "Easy to use webmanifest generator",
"scripts": {
"build": "tsc"
},
"keywords": [
"webmanifest"
],
"author": "Martijn Dirksen <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/martijndirksen/webmanifest-generator.git"
},
"license": "MIT",
"main": "dist/index.js",
"bin": {
"webmanifest-generator": "dist/index.js"
},
"files": [
"dist/*.js"
],
"devDependencies": {
"@types/node": "^18.18.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.0.0",
"sharp": "^0.32.6",
"sharp-ico": "^0.1.5"
},
"type": "module",
"engines": {
"node": ">=18"
}
}