-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1002 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
44
{
"version": "2.1.1",
"name": "hyperstatic",
"description": "Hyperapp static site framework",
"author": "Alexandre Lotte",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "echo \"No test specified\""
},
"dependencies": {
"fs-extra": "^9.1.0",
"hyperapp": "^2.0.18",
"path-to-regexp": "^6.2.0",
"puppeteer": "^7.1.0",
"replace-in-file": "^6.2.0",
"serve-handler": "^6.1.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.28",
"@types/yargs": "^16.0.0",
"typescript": "^4.2.4"
},
"bin": {
"hyperstatic": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loteoo/hyperstatic.git"
},
"keywords": [
"hyperapp",
"framework",
"static-site-generator"
],
"bugs": {
"url": "https://github.com/loteoo/hyperstatic/issues"
},
"homepage": "https://hyperstatic.dev"
}