-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "optic",
"version": "1.0.0",
"description": "An experimental web proxy for testing new technologies in evading local and region based internet restrictions.",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "tailwind -o ./public/output.css",
"build": "set MODE=production && tsx run.ts",
"dev": "set MODE=development && tsx watch run.ts",
"format": "prettier . --write"
},
"keywords": [],
"author": "Cohen Erickson",
"license": "MIT",
"dependencies": {
"@tomphttp/bare-client": "^2.2.0-alpha",
"acorn-loose": "^8.3.0",
"astravel": "^0.6.1",
"astring": "^1.8.6"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/acorn": "^6.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"esbuild": "^0.19.2",
"esbuild-plugin-clean": "^1.0.1",
"express": "^4.18.2",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3",
"tsx": "^3.12.7",
"typed-emitter": "^2.1.0",
"typescript": "^5.1.6"
}
}