-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "@requestly/requestly-proxy",
"version": "1.3.5",
"description": "Proxy that gives superpowers to all the Requestly clients",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/test.ts",
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/requestly/rq-proxy.git"
},
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@requestly/requestly-core": "^1.1.0",
"@sentry/browser": "^8.33.1",
"async": "^3.2.5",
"axios": "^1.7.2",
"capture-console-logs": "^1.0.1",
"charset": "^1.0.1",
"debug": "^4.3.2",
"httpsnippet": "^3.0.4",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mkdirp": "^0.5.5",
"node-forge": "^1.3.0",
"semaphore": "^1.1.0",
"ua-parser-js": "^1.0.37",
"url": "^0.11.3",
"uuid": "^8.3.2",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/har-format": "^1.2.15",
"@types/node": "^20.12.12",
"ajv": "^8.13.0",
"nodemon": "^3.1.0",
"type-fest": "^2.12.2",
"typescript": "^5.6.3"
},
"files": [
"dist"
]
}