-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "putout",
"version": "2.0.0",
"description": "Turn your ebook into a beautiful, easy-to-navigate website using 11ty",
"main": ".eleventy.js",
"scripts": {
"start": "concurrently --restart-tries 10 --restart-after 1000 \"npm:watch:*\"",
"watch:eleventy": "eleventy --serve",
"watch:tailwind": "tailwindcss -i src/styles/tailwind.css -o dist/styles/tailwind.css --watch",
"build": "npm run build:eleventy && npm run build:tailwind && npm run build:formats",
"build:eleventy": "eleventy",
"build:tailwind": "tailwindcss -i src/styles/tailwind.css -o dist/styles/tailwind.css --minify",
"build:formats": "node scripts/generate-formats.js"
},
"keywords": [
"ebook",
"11ty",
"static-site-generator",
"tailwindcss",
"jamstack"
],
"author": "DeepakNess <me@deepakness.com> (https://deepakness.com)",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-navigation": "^1.0.4",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.24",
"epub-gen-memory": "^1.1.2",
"gray-matter": "^4.0.3",
"lucide": "^0.563.0",
"markdown-it": "^14.1.0",
"postcss": "^8.5.6",
"puppeteer": "^24.6.0",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepakness/putout.git"
},
"bugs": {
"url": "https://github.com/deepakness/putout/issues"
},
"homepage": "https://github.com/deepakness/putout#readme",
"engines": {
"node": ">=18.0.0"
}
}