-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 735 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 735 Bytes
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
{
"name": "@ystemsrx/cfshare",
"version": "0.1.7",
"type": "module",
"description": "Safely expose local ports/files via Cloudflare Quick Tunnel",
"license": "MIT",
"bin": {
"cfshare": "dist/src/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepack": "npm run build"
},
"files": [
"dist",
"src"
],
"keywords": [
"cloudflared",
"cloudflare",
"tunnel",
"file-share"
],
"dependencies": {
"@sinclair/typebox": "0.34.48",
"ignore": "^7.0.5",
"mime-types": "^3.0.1",
"yazl": "^3.3.1"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.10",
"typescript": "^5.7.0"
}
}