-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "mpa-archive",
"version": "3.0.22",
"author": "Tito Bouzout",
"license": "GPL",
"homepage": "https://github.com/potahtml/mpa-archive",
"description": "Crawls a Multi-Page Application to a zip file, serve the Multi-Page Application from the zip file. A MPA archiver. Could be used as a Site Generator",
"type": "module",
"bin": {
"mpa": "./src/index.js"
},
"dependencies": {
"adm-zip": "^0.5.12",
"mime-types": "^2.1.35",
"puppeteer": "^22.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/potahtml/mpa-archive.git"
},
"keywords": [
"crawl",
"crawler",
"archiver",
"site crawler",
"site archiver",
"mpa crawler",
"site generator",
"ssg",
"ssr",
"webserver"
],
"prettier": {
"printWidth": 70,
"useTabs": true,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"proseWrap": "never",
"endOfLine": "lf",
"singleAttributePerLine": true
}
}