-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "amp-cdn-worker",
"version": "1.0.0",
"description": "Cloudflare Worker code for the AMP runtime CDN",
"main": "dist/worker.mjs",
"scripts": {
"build": "node ./esbuild.js",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tsc --noEmit --pretty",
"test": "jest --config test/jestconfig.json --verbose --silent"
},
"author": "The AMP HTML Authors",
"license": "Apache-2.0",
"dependencies": {
"brotli-wasm": "2.0.1",
"mime": "3.0.0",
"worktop": "0.7.3"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250129.0",
"@types/jest": "29.5.14",
"@types/mime": "3.0.4",
"@types/service-worker-mock": "2.0.4",
"@typescript/lib-webworker": "npm:@cloudflare/workers-types",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"esbuild": "0.24.2",
"esbuild-plugin-ignore": "1.1.1",
"esbuild-plugin-text-replace": "1.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-typescript": "3.0.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-google-camelcase": "0.0.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-sort-destructure-keys": "1.6.0",
"eslint-plugin-tsdoc": "0.4.0",
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"prettier": "3.4.2",
"service-worker-mock": "2.0.5",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"typescript": "5.7.3"
}
}