-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
90 lines (90 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@webrecorder/wabac",
"version": "2.20.8",
"main": "index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./swlib": {
"types": "./dist/types/swlib.d.ts",
"default": "./dist/swlib.js"
}
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@peculiar/asn1-ecc": "^2.3.4",
"@peculiar/asn1-schema": "^2.3.3",
"@peculiar/x509": "^1.9.2",
"@types/js-levenshtein": "^1.1.3",
"@webrecorder/wombat": "^3.8.7",
"acorn": "^8.10.0",
"auto-js-ipfs": "^2.1.1",
"base64-js": "^1.5.1",
"brotli": "^1.3.3",
"buffer": "^6.0.3",
"fast-xml-parser": "^4.4.1",
"hash-wasm": "^4.9.0",
"http-link-header": "^1.1.3",
"http-status-codes": "^2.1.4",
"idb": "^7.1.1",
"js-levenshtein": "^1.1.6",
"js-yaml": "^4.1.0",
"pako": "^1.0.11",
"parse5-html-rewriting-stream": "^7.0.0",
"parse5-sax-parser": "^7.0.0",
"path-parser": "^6.1.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"warcio": "^2.4.3"
},
"devDependencies": {
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.23",
"@types/brotli": "^1.3.4",
"@types/http-link-header": "^1.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.5",
"@types/pako": "1.0.1",
"@types/serve-static": "^1.15.7",
"@types/test-listen": "^1.1.2",
"@types/web": "^0.0.142",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"ava": "^6.1.3",
"c8": "^7.12.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"fake-indexeddb": "^4.0.0",
"globals": "^13.17.0",
"prettier": "^3.3.3",
"raw-loader": "^4.0.2",
"serve-static": "^1.15.0",
"test-listen": "^1.1.0",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsimp": "^2.0.11",
"typescript": "^5.5.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.8.0"
},
"files": [
"src/*",
"dist/*"
],
"scripts": {
"build": "webpack --mode production",
"build-dev": "NODE_ENV=development webpack --mode development",
"start-dev": "webpack-dev-server --mode development",
"start-live-proxy": "cp dist/sw.js ./examples/live-proxy/sw.js && cd ./examples/live-proxy && ./fetch-adblock.sh && http-server -p 10001",
"test": "c8 ava",
"lint:check": "eslint ./src/ ./test/",
"lint": "eslint --fix ./src/ ./test/",
"format:check": "prettier --check ./src/ ./test/",
"format": "prettier --write ./src/ ./test/"
}
}