-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "hugo-install",
"version": "2.0.2",
"description": "Automagically install Hugo (<https://gohugo.io>) as part of `npm install` without using got.",
"keywords": [
"hugo",
"gohugo",
"install",
"binary",
"wrapper"
],
"homepage": "https://github.com/z0rrn/hugo-install",
"bugs": "https://github.com/z0rrn/hugo-install/issues",
"license": "MIT",
"author": "Frederik Zorn <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./main.js"
}
},
"module": "main.js",
"files": [
"README.md",
"LICENSE",
"jsconfig.json",
"main.js",
"bin/hugo-install.js",
"bin/cli.js"
],
"bin": {
"hugo-install": "bin/hugo-install.js",
"hugo": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/z0rrn/hugo-install.git"
},
"scripts": {
"testinstall": "hugo-install --version 0.123.2",
"lint:fix": "xo --fix && prettier --write . ",
"lint": "xo && prettier --check ."
},
"dependencies": {
"commander": "^12.0.0",
"decompress": "^4.2.1"
},
"devDependencies": {
"@types/bun": "latest",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"xo": "^0.58.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engine": {
"node": ">=18.0.0"
}
}