-
Notifications
You must be signed in to change notification settings - Fork 1
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": "plugins.jquery.com-static",
"version": "0.0.1",
"description": "Static archive of plugins.jquery.com, built with eleventy.",
"type": "module",
"scripts": {
"clean": "rimraf _site/ && mkdir -p _site",
"build": "cross-env ELEVENTY_PRODUCTION=true npx @11ty/eleventy",
"postbuild": "npm run searchindex && cross-env NODE_ENV=production npm run tailwind -- --minify",
"start": "npm run clean && bash dev.sh",
"debug": "npm run clean && cross-env NODE_ENV=development DEBUG=Eleventy* npx @11ty/eleventy",
"benchmark": "npm run clean && cross-env NODE_ENV=development DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"searchindex": "node pagefind/generate.js",
"tailwind": "tailwindcss -i styles/app.css -o _site/style.css",
"testbuild": "npm run clean && cross-env NODE_ENV=development npx @11ty/eleventy && npm run searchindex"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/plugins.jquery.com-static.git"
},
"keywords": [
"jquery",
"plugins",
"archive"
],
"author": {
"name": "Timmy Willison",
"email": "timmywil@users.noreply.github.com",
"url": "https://timmywil.com/"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/jquery/plugins.jquery.com-static/issues"
},
"homepage": "https://github.com/jquery/plugins.jquery.com-static#readme",
"devDependencies": {
"@11ty/eleventy": "github:11ty/eleventy",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@tailwindcss/cli": "^4.3.0",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eleventy-favicon": "^1.1.3",
"lodash-es": "^4.18.1",
"luxon": "^3.7.2",
"pagefind": "^1.5.2",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"rimraf": "^6.1.3",
"tailwindcss": "^4.3.0"
},
"overrides": {
"sharp": "^0.32.1"
}
}