-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "fortigate-web-sslvpn",
"version": "2.2.0",
"description": "Make requests through FortiGate SSL VPN using the web mode.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup ./src/index.ts --dts --minify terser --clean --format cjs,esm --sourcemap",
"release": "release-it",
"lint": "tsc && eslint ."
},
"files": [
"dist"
],
"keywords": [
"fortigate",
"vpn",
"ssl",
"web",
"sslvpn"
],
"author": "Mikkel RINGAUD <[email protected]> (https://github.com/Vexcited)",
"license": "MIT",
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"draft": false,
"releaseName": "v${version}"
},
"npm": {
"publish": true
},
"hooks": {
"before:init": "pnpm lint",
"after:bump": "pnpm build"
}
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@types/node": "^20.11.27",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"release-it": "^17.1.1",
"terser": "^5.29.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"dependencies": {
"http-parser-js": "^0.5.8"
}
}