-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
89 lines (89 loc) · 2.56 KB
/
config.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"postcss": {
"preset-env": {
"browsers": "last 2 versions"
},
"csso": {
"restructure": false
}
},
"webpack": {
"watch_dir": "./src",
"output_dir": "./.prebuilt",
"media": {
"input": "./src/assets/media",
"output": "media"
},
"app": {
"input": "./src/assets/app/index.ts",
"output": "scripts/app.bundle.js"
},
"styles": {
"output": "styles/app.bundle.css"
},
"fonts": {
"input": "./src/assets/fonts",
"output": "fonts"
},
"vendor": {
"input": "./src/assets/vendor",
"output_js": "scripts/vendor.bundle.js",
"output_css": "styles/vendor.bundle.css"
}
},
"webpack_dist": {
"watch_dir": "./.prebuilt",
"output_dir": "./dist",
"index": {
"input": "./src/story",
"input_head": "./src/head-content.html",
"output": "./dist/index.html"
},
"media": {
"input": "./.prebuilt/media",
"output": "./dist/media"
},
"scripts": {
"input": "./.prebuilt/scripts",
"output": "./dist/scripts"
},
"styles": {
"input": "./.prebuilt/styles",
"output": "./dist/styles"
},
"fonts": {
"input": "./.prebuilt/fonts",
"output": "./dist/fonts"
}
},
"tweego": {
"dir": "./.tweego",
"options": [],
"binaries": {
"version": "v2.1.1",
"win32": {
"name": "tweego.exe",
"x86": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-windows-x86.zip",
"x64": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-windows-x64.zip"
},
"darwin": {
"name": "tweego",
"x86": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-macos-x86.zip",
"x64": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-macos-x64.zip",
"arm64": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-macos-x64.zip"
},
"linux": {
"name": "tweego",
"x86": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-linux-x86.zip",
"x64": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-linux-x64.zip",
"arm64": "https://github.com/tmedwards/tweego/releases/download/v2.1.1/tweego-2.1.1-linux-x64.zip"
}
},
"storyFormats": {
"sugarcube": {
"version": "v2.36.1",
"link": "https://github.com/tmedwards/sugarcube-2/releases/download/v2.36.1/sugarcube-2.36.1-for-twine-2.1-local.zip"
}
}
}
}