-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bulwark-static",
"version": "1.0.0",
"description": "Generate your podcast's static site",
"scripts": {
"setup": "npx ts-node scripts/setup.ts",
"demo": "mkdirp public && cp -r src public && cp -r content public && cp -r scripts public && cp package-example.json public/package.json && cd public && npm i && npm run build",
"build": "echo 'Run `npm run setup` first'",
"watch": "echo 'Run `npm run setup` first'",
"serve": "echo 'Run `npm run setup` first'",
"start": "echo 'Run `npm run setup` first'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bulwarkfm/staart-static.git"
},
"keywords": [],
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bulwarkfm/staart-static/issues"
},
"homepage": "https://github.com/bulwarkfm/staart-static#readme",
"dependencies": {
"@staart/site": "^3.0.0-beta.6"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"dotenv": "^8.2.0",
"got": "^11.1.0",
"inquirer": "^7.1.0",
"ts-node": "^8.10.1"
},
"@staart/site": {
"title": "PODCAST_NAME",
"listSubpages": true,
"ignoreHomeSubpages": true,
"theme": {
"headerBackgroundColor": "#7ed6df",
"headerTextColor": "#000000",
"textColor": "#002024",
"linkColor": "#000000",
"buttonBackgroundColor": "#f9ca24",
"buttonBackgroundColorLight": "#f6e58d",
"buttonTextColor": "#000000",
"doodleFillColor": "#f9ca24"
},
"navbar": [
"<a href='/episodes'>Episodes</a>",
"<a href='/listen'>How to Listen</a>"
],
"preFooter": [
{
"type": "message",
"style": {
"background-color": "var(--headerBackgroundColor)",
"color": "var(--headerTextColor)",
"padding": "5vh 0 10vh 0"
},
"illustration": "dancing",
"title": "PODCAST_NAME is available wherever you listen to podcasts.",
"ctaText": "Listen now →",
"ctaLink": "/listen"
}
],
"footer": {
"text": "Hosted by AUTHOR_NAME",
"links": [
"<a href='RSS_URL'>RSS</a>",
"<a href='API_URL'>API</a>"
]
}
}
}