forked from hunghg255/ctun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ctun",
"version": "0.0.7",
"description": "Tunnel your local HTTP(s) server to the world! Powered by Cloudflare Quick Tunnels.",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.mjs",
"require": "./dist/cli.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"ctun": "./bin/ctun.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild",
"start": "unbuild --stub && node bin/ctun.mjs --url http://localhost:3000",
"dev": "vitest dev",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test -w",
"prepack": "npm run build",
"release": "npm test && changelogen --release && npm publish && git push --follow-tags",
"typecheck": "tsc --noEmit",
"test": "npm lint && npm typecheck && vitest run --coverage"
},
"dependencies": {
"consola": "^3.2.3",
"hqr": "^0.0.1",
"ip": "^1.1.8",
"kolorist": "^1.8.0",
"pathe": "^1.1.1",
"unprompts": "^1.0.8"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/node": "^20.4.10",
"@vitest/coverage-v8": "^0.34.1",
"changelogen": "^0.5.4",
"eslint": "^8.47.0",
"eslint-config-unjs": "^0.2.1",
"prettier": "^3.0.1",
"typescript": "^5.1.6",
"unbuild": "^2.0.0-rc.0",
"vitest": "^0.34.1"
},
"keywords": [
"Tunnel",
"Cloudflare"
],
"bugs": {
"url": "https://github.com/hunghg255/ctun/issues"
},
"homepage": "https://github.com/hunghg255/ctun#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/ctun.git"
}
}