-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1015 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1015 Bytes
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
{
"name": "git-lfserve",
"version": "1.0.0",
"description": "Cloudflare Pages middleware that serves a repo's Git LFS objects in place of LFS pointer files.",
"type": "module",
"private": true,
"license": "MIT",
"author": "Kurt Stolle",
"homepage": "https://github.com/khwstolle/git-lfserve#readme",
"repository": {
"type": "git",
"url": "https://github.com/khwstolle/git-lfserve.git"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test",
"dev": "npx --yes wrangler pages dev .",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,json}\"",
"format:check": "prettier --check \"**/*.{js,json}\"",
"check:bundle": "esbuild _middleware.js --bundle --format=esm --loader:.txt=text --loader:.lfsconfig=text --outfile=/dev/null"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"esbuild": "^0.25.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2"
}
}