-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 KB
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
{
"name": "bookity",
"version": "1.0.0",
"description": "\"An 11ty template for self-hosting webnovels and/or fanfiction\"",
"main": "index.js",
"scripts": {
"watch:sass": "sass --no-source-map --watch _input/_sass:_output/assets/css --style compressed --quiet-deps",
"build:sass": "sass --no-source-map _input/_sass:_output/assets/css --style compressed --quiet-deps",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captainharrie/bookity.git"
},
"author": "Captain Harrie",
"license": "ISC",
"bugs": {
"url": "https://github.com/captainharrie/bookity/issues"
},
"homepage": "https://github.com/captainharrie/bookity#readme",
"type": "module",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"bootstrap": "^5.3.3",
"js-cookie": "^2.2.1",
"npm-run-all": "^4.1.5",
"sass": "^1.83.1"
}
}