-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 2.16 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pfsense-actions",
"displayName": "pfSense® Actions",
"version": "1.1.1",
"description": "A controller that allows a network administrator to run simple actions such as Wake-on-LAN and reload firewall filters",
"main": "./build/index.js",
"exports": "./build/index.js",
"type": "module",
"private": true,
"scripts": {
"start": "tsx --env-file=.env src/index.ts",
"build": "npm-run-all --sequential build:*",
"build:reset": "rimraf ./build",
"build:lint": "npx eslint ./src",
"build:tsc": "tsc --project tsconfig.json",
"build:fix-paths": "tsconfig-replace-paths --project tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/mrjackyliang/pfsense-actions.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mrjackyliang"
},
{
"type": "custom",
"url": "https://liang.nyc/paypal"
}
],
"keywords": [
"pfsense",
"pfsense-firewall",
"wake-on-lan",
"dyndns",
"dyndns-updater",
"docker-image"
],
"author": {
"name": "Jacky Liang",
"email": "[email protected]",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjackyliang/pfsense-actions/issues"
},
"files": [
"./build"
],
"homepage": "https://github.com/mrjackyliang/pfsense-actions",
"engines": {
"node": ">=20"
},
"dependencies": {
"express": "4.19.2",
"node-ssh": "13.2.0",
"serialize-error": "11.0.3",
"uuid": "10.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "22.5.1",
"@types/ssh2": "1.15.1",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.29.1",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"tsconfig-replace-paths": "0.0.14",
"tsx": "4.19.0",
"typescript": "5.5.4"
}
}