-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
49
50
{
"name": "@httptoolkit/public-endpoint",
"version": "0.0.0",
"description": "A server to exposing a public cloud URLs for local HTTP Toolkit webhook, OAuth & localhost-server testing",
"private": true,
"type": "module",
"scripts": {
"start": "tsx src/server.ts",
"start:dev": "tsx --watch src/server.ts",
"build": "tsc",
"test": "mocha -r tsx test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/public-endpoint.git"
},
"keywords": [
"http",
"network",
"public",
"tunnel",
"ngrok",
"tls",
"https",
"test",
"webhook",
"oauth",
"localhost"
],
"author": "Tim Perry <tim@httptoolkit.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/httptoolkit/public-endpoint/issues"
},
"homepage": "https://github.com/httptoolkit/public-endpoint#readme",
"dependencies": {
"@httptoolkit/httpolyglot": "^3.0.1",
"destroyable-server": "^1.1.1",
"nanoid": "^5.1.6",
"tsx": "^4.19.3"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.2",
"chai": "^6.2.1",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
}
}