-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
{
"name": "cloudflared",
"version": "0.6.0",
"description": "Cloudflared in Node. Which allows you to easily create HTTPS tunnels using Cloudflare's cloudflared. It provides a typed API for creating tunnels and managing the cloudflared binary installation.",
"main": "./lib/lib.js",
"types": "./lib/lib.d.ts",
"bin": "./lib/cloudflared.js",
"scripts": {
"test": "vitest",
"dev": "tsup --watch",
"build": "tsup",
"docs": "typedoc ./src/lib.ts",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' --ignore-path .gitignore",
"lint": "eslint .",
"postinstall": "node scripts/postinstall.mjs && node lib/cloudflared.js -v",
"changeset": "changeset"
},
"keywords": [
"cloudflared",
"tunnel",
"macos",
"windows",
"linux",
"cli",
"lib"
],
"author": "JacobLinCool <[email protected]> (https://github.com/JacobLinCool)",
"license": "MIT",
"files": [
"lib",
"scripts"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"changeset": "^0.2.6",
"cloudflared": "workspace:*",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"homepage": "https://github.com/JacobLinCool/node-cloudflared#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/node-cloudflared.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/node-cloudflared/issues"
},
"packageManager": "[email protected]"
}