-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.94 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
52
53
54
55
56
57
58
59
{
"name": "bookmarklet_one",
"version": "2.1.1",
"description": " ",
"scripts": {
"build": "eleventy",
"build:all": "pnpm build:css && pnpm build:js && eleventy",
"bench": "DEBUG=Eleventy:Benchmark* eleventy",
"build:css": "npx tailwindcss -i ./src/scss/tailwind.scss -o ./src/public/css/main.css --minify",
"build:js": "terser src/public/js/main.js --compress --mangle --minify --toplevel -o src/public/js/main.min.js",
"build:bmjs": "terser src/public/js/bookmarkletmaker.js --compress --mangle --minify --toplevel -o src/public/js/bookmarkletmaker.min.js",
"build:esjs": "esbuild --bundle src/public/js/main.js --outfile=src/public/js/main.min.js",
"serve": "eleventy --serve",
"debug": "DEBUG=* eleventy",
"new-bookmarklet": "node scripts/create-bookmarklet.js"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^5.0.2",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@amitind/util": "^0.1.2",
"@tailwindcss/typography": "^0.5.13",
"alpinejs": "^3.14.0",
"clean-css": "^5.3.3",
"dotenv": "^16.4.5",
"eleventy-plugin-gen-favicons": "^1.1.2",
"html-minifier": "^4.0.0",
"luxon": "^3.4.4",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"markdown-it-kbd": "^2.2.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^3.0.1",
"netlify-plugin-11ty": "^1.4.0",
"netlify-plugin-js-obfuscator": "^1.0.21",
"netlify-plugin-submit-sitemap": "^0.4.0",
"tailwindcss": "^3.4.3",
"terser": "^5.31.0"
},
"dependencies": {
"sharp": "^0.33.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"javascript-obfuscator",
"sharp"
]
}
}