-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@momsfriendlydevco/cowboy",
"version": "1.9.0",
"description": "Wrapper around Cloudflare Wrangler to provide a more Express-like experience",
"scripts": {
"lint": "eslint"
},
"keywords": [
"wrangler"
],
"type": "module",
"imports": {
"#lib/*": "./lib/*.js",
"#middleware": "./middleware/index.js",
"#middleware/*": "./middleware/*.js"
},
"exports": {
".": "./lib/cowboy.js",
"./*": "./lib/*.js",
"./middleware": "./middleware/index.js",
"./middleware/*": "./middleware/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/Cowboy.git"
},
"author": "Matt Carter <matt@mfdc.biz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/Cowboy/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/Cowboy#readme",
"engineStrict": false,
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@momsfriendlydevco/joyful": "^1.0.1",
"@momsfriendlydevco/path-match": "^1.1.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^2.3.1",
"eslint": "^9.33.0"
}
}