-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "create-harold-app",
"version": "1.2.1",
"description": "Static blog/site generator",
"author": "Julian Ćwirko (julian.io)",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"bin": {
"create-harold-app": "./bin/create-harold-app.js"
},
"homepage": "https://www.haroldjs.com",
"repository": {
"type": "git",
"url": "https://github.com/harold-js/create-harold-app"
},
"keywords": [
"blogging",
"static-site-generator",
"javascript",
"generator",
"jamstack"
],
"scripts": {
"lint": "eslint . --fix",
"prettier": "prettier --write '**/*.{js,json}'"
},
"dependencies": {
"adm-zip": "0.5.16",
"axios": "1.7.7",
"commander": "12.1.0",
"cross-spawn": "7.0.5",
"is-absolute-url": "4.0.1",
"prettier": "3.3.3",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "^15.12.0"
}
}