-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "ctun",
"version": "0.1.00",
"description": "Tunnel your local HTTP(s) server to the world! Powered by Cloudflare Quick Tunnels.",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"bin": {
"ctun": "./bin/ctun.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild ",
"start": "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.1.0",
"ip": "^2.0.1",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"unprompts": "^1.0.11"
},
"devDependencies": {
"@types/ip": "^1.1.3",
"@types/node": "^20.14.15",
"@vitest/coverage-v8": "^0.34.6",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"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"
},
"packageManager": "[email protected]+sha512.9c2cb83f2b6cf6a25d8c58300bf99197c7ef3be84cf3e766f29054b40b83b42f8aaba6fcc314a9ecf27c00f7ce80a757bb4c608800e7adbe2d29dc5c7056f5be"
}