-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.47 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.47 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
{
"name": "lethean-server",
"version": "5.0.9",
"license": "EUPL-1.2",
"description": "Lethean VPN Node",
"homepage": "https://github.com/letheanVPN/lethean-server/wiki",
"bugs": {
"url": "https://github.com/letheanVPN/lethean-server/issues",
"email": "hello@lt.hn"
},
"author": "Snider <snider@lt.hn> (Snider.lthn)",
"main": "mod.ts",
"repository": {
"type": "git",
"url": "https://github.com/letheanVPN/lethean-server.git"
},
"scripts": {
"dev": "deno run --watch -A --unstable mod.ts",
"dev:gui": "deno run --watch -A --unstable --import-map vendor/import_map.json mod.ts gui",
"dev:setup": "cd $HOME/Lethean/conf && git clone https://github.com/letheanVPN/config-templates.git templates",
"start": "make run",
"server:compile": "make build",
"server:build:linux": "make build-linux",
"server:build:macos-intel": "make build-macos",
"server:build:macos-arm": "make build-macos-arm",
"server:build:windows": "make build-windows",
"test": "make test",
"fmt": "make fmt",
"sdk:angular": "openapi-generator generate -i openapi.json -g typescript-angular -o build/api",
"postversion": "deno task bundle && git add bundle.js && git commit -m \"bundle update\" && git push && git push --tags"
},
"dependencies": {
"@openapitools/openapi-generator-cli": "^2.9.0",
"openpgp": "^5.10.1",
"pem-ts": "^3.0.0"
},
"devDependencies": {
"typescript": "^4.6.3",
"typescript-deno-plugin": "^1.31.0"
}
}