-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "@rschristian/freetunnel",
"version": "0.3.3",
"bin": {
"freetunnel": "src/bin.js"
},
"type": "module",
"license": "MIT",
"author": "Ryan Christian <rchristian@ryanchristian.dev>",
"description": "Create secure introspectable tunnels to your local device",
"repository": {
"url": "git+https://github.com/rschristian/freetunnel.git"
},
"keywords": [
"tunnel",
"webhook",
"secure",
"URL",
"access"
],
"files": [
"src",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"serve:dev": "chokidar 'src/*.js' 'src/views/*.ejs' --initial -c 'pnpm serve:prod'",
"serve:prod": "node src/bin.js",
"format": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"kleur": "^4.1.4",
"polka": "^1.0.0-next.11",
"polka-ejs": "^1.0.0",
"sade": "^1.8.1",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/ws": "^8.5.10",
"chokidar-cli": "^3.0.0",
"prettier": "^2.8.8",
"prettier-config-rschristian": "^0.1.3"
},
"prettier": "prettier-config-rschristian"
}