-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@circlesac/cgrok",
"version": "26.2.0",
"type": "module",
"description": "🚀 An ngrok-like CLI that uses Cloudflare for secure tunneling",
"keywords": [
"cli",
"tunnel",
"cloudflare",
"ngrok",
"proxy"
],
"main": "dist/main.js",
"bin": {
"cgrok": "dist/main.js"
},
"files": [
"dist",
"skills"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "barrels && bun lint && npx -p @typescript/native-preview tsgo --noEmit && bun run build.ts",
"dev": "bun run src/main.ts",
"start": "bun run build && bun run dist/main.js",
"lint": "npx @circlesac/lint --all",
"test": "vitest run --coverage",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"deploy": "npm publish --access public",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@tszen/trycatch": "^0.1.0",
"cloudflare": "^4.5.0",
"commander": "^14.0.0",
"ink": "^6.7.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"js-yaml": "^4.1.0",
"moment-timezone": "^0.6.0",
"react": "^19.2.4",
"tldts": "^7.0.12"
},
"devDependencies": {
"@tsed/barrels": "^6.6.3",
"@types/bun": "^1.2.21",
"@types/js-yaml": "^4.0.9",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^24.3.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "3.2.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/circlesac/cgrok"
},
"pi": {
"skills": [
"./skills"
]
},
"license": "MIT"
}