-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
64 lines (64 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "aero-proxy",
"version": "0.0.6",
"description": "The innovative interception proxy",
"main": "extras/node/aeroPath.js",
"exports": {
".": {
"node": {
"import": "./extras/node/aeroPath.js",
"require": "./extras/node/aeroPath.cjs"
}
},
"./configTypes": "./types/config.d.ts"
},
"files": [
"dist/**/*.js",
"dist/**/*.map",
"dist/logo.webp",
"extras/**/*.js",
"extras/**/*.cjs",
"types/*.d.ts"
],
"scripts": {
"rsdoctor": "npm run rsdoctorSW & npm run rsdoctorSandbox &",
"rsdoctorSW": "kill $(lsof -t -i:3300) & rsdoctor analyze --profile dist/debug/sw/.rsdoctor/manifest.json --port 3300",
"rsdoctorSandbox": "kill $(lsof -t -i:3301) & rsdoctor analyze --profile src/AeroSandbox/dist/debug/.rsdoctor/manifest.json --port 3301",
"test": "npm run tests/index.js",
"testsNode": "npm run tests/node/index.js",
"testsBrowser": "echo 'Unsupported at the moment'",
"buildSW": "rspack build -c rspack.config.ts",
"debugBuildSW": "rspack --stats-error-detail --watch --info-verbosity",
"start": "pm2 start ecosystem.config.cjs --only \"aero-dev-server,aero-build-watch,aero-sandbox-build-watch\"",
"liveBuildSW": "pm2 start ecosystem.config.cjs --only \"aero-build-watch,aero-sandbox-build-watch\"",
"liveBuildWinter": "pm2 start ecosystem.config.cjs --only \"aero-build-winterjs,aero-sandbox-build-watch\", \"",
"liveBuildCFWorkers": "pm2 start ecosystem.config.cjs --only \"aero-build-cf-workers,aero-sandbox-build-watch\", \"",
"liveBuildAeroSandbox": "pm2 start ecosystem.config.cjs --only \"aero-sandbox-build-watch\"",
"format": "biome format --write .",
"lint": "biome lint --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProxyHaven/aero.git"
},
"keywords": ["Proxy", "Archiver", "Unblock", "Interception"],
"author": "Ryan Wilson",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/ProxyHaven/aero#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rsdoctor/cli": "^0.4.7",
"@rsdoctor/rspack-plugin": "^0.4.7",
"@rspack/cli": "^1.0.13",
"@rspack/core": "^1.0.13",
"@types/serviceworker": "^0.0.101",
"@types/web-app-manifest": "^1.0.8",
"clean-webpack-plugin": "^4.0.0",
"playwright": "^1.48.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.4"
}
}