-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "browser-private-api-proxy-server",
"version": "1.0.0",
"description": "WebSocket Server and REST API for proxying private browser APIs",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"esbuild": "esbuild --minify --bundle src/index.ts --outdir=dist --platform=node",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"websocket",
"proxy",
"api",
"chrome-extension"
],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cuid": "^3.0.0",
"dotenv": "^17.2.3",
"hono": "^4.0.0",
"level": "^10.0.0",
"level-sublevel": "^6.6.5",
"lmdb": "^3.4.4",
"marked": "^17.0.1",
"marked-terminal": "^7.3.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"typescript": "^5.2.2",
"unescape-js": "^1.1.4",
"xmlbuilder2": "^4.0.0"
},
"devDependencies": {
"@hono/node-server": "^1.0.0",
"@types/node": "^20.8.2",
"@types/unescape-js": "^1.0.3",
"esbuild": "^0.27.0",
"nodemon": "^3.0.1",
"tsx": "^3.12.2"
}
}