-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "pages-plugin-asset-negotiation",
"version": "0.1.5",
"description": "Cloudflare Pages plugin for optimised assets via content negotiation",
"keywords": [
"cloudflare-pages",
"cloudflare-pages-plugin",
"pages-plugin",
"pages-plugin-asset-negotiation"
],
"homepage": "https://github.com/Cherry/pages-plugin-asset-negotiation#readme",
"bugs": {
"url": "https://github.com/Cherry/pages-plugin-asset-negotiation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cherry/pages-plugin-asset-negotiation.git"
},
"license": "MIT",
"author": "James Ross <[email protected]> (https://jross.me)",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.js",
"index.d.ts"
],
"scripts": {
"build": "npx wrangler pages functions build --plugin --outdir dist",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"prepare": "npm run build",
"test": "npm run check-types && npm run lint"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250109.0",
"@nodecraft/eslint-config": "44.3.0",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"eslint": "8.57.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-unicorn": "56.0.1",
"typescript": "5.7.3",
"wrangler": "3.102.0"
},
"engines": {
"node": ">=16"
}
}