-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
45
46
47
48
{
"name": "httptoolkit-webextension",
"version": "1.2.0",
"description": "A browser extension used in HTTP Toolkit",
"main": "index.js",
"scripts": {
"build": "node ./esbuild.js && mkdir -p public/config/",
"version": "npm run build && git add public/manifest.json",
"ts-check": "tsc --noEmit",
"test": "npm run ts-check",
"start:dev": "node-dev ./start-dev-server.js & DEV_MODE=true npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/webextension.git"
},
"keywords": [
"httptoolkit",
"extension",
"webextension",
"webrtc",
"mockrtc",
"hook",
"http",
"toolkit"
],
"author": "Tim Perry <tim@httptoolkit.tech>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/webextension/issues"
},
"homepage": "https://github.com/httptoolkit/webextension#readme",
"dependencies": {
"@types/webextension-polyfill": "^0.9.0",
"graphql": "^15.8.0",
"mockrtc": "^0.4.0",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"esbuild": "^0.14.27",
"esbuild-plugin-clean": "^0.9.0",
"mockttp": "^3.2.2",
"node-dev": "^7.4.2",
"typescript": "^4.6.3"
}
}