-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.9 KB
/
package.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
{
"name": "plugins.jquery.com",
"version": "0.0.1",
"description": "Static archive of plugins.jquery.com, built with eleventy.",
"type": "module",
"scripts": {
"clean": "rimraf _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/tailwind.css -c styles/tailwind.config.js -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.git"
},
"keywords": [
"jquery",
"plugins",
"archive"
],
"author": {
"name": "Timmy Willison",
"email": "[email protected]",
"url": "https://timmywil.com/"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/jquery/plugins.jquery.com/issues"
},
"homepage": "https://github.com/jquery/plugins.jquery.com#readme",
"devDependencies": {
"@11ty/eleventy": "github:11ty/eleventy",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eleventy-favicon": "^1.1.3",
"lodash-es": "^4.17.21",
"luxon": "^3.5.0",
"pagefind": "^1.1.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.13"
},
"overrides": {
"sharp": "^0.32.1"
}
}