-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "keuknet",
"version": "3.0.0",
"description": "A webserver and client program for easily managing a WireGuard-network in a client-server setting.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "sudo tsx watch --exclude './data/**/*' --clear-screen=false --env-file=.env ./src/index.ts",
"dev-wsl": "npx tsx watch --exclude './data/**/*' --clear-screen=false --env-file=.env ./src/index.ts"
},
"author": "Keukeiland, Fizitzfux",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/keukeiland/keuknet.git"
},
"bugs": {
"url": "https://github.com/keukeiland/keuknet/issues"
},
"homepage": "https://keuk.net/",
"engineStrict": true,
"engines": {
"node": "^23"
},
"dependencies": {
"cookie": "^1.0.2",
"knex": "^3.1.0",
"nunjucks": "^3.2.4",
"sqlite3": "^5.1.6",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/knex": "^0.15.2",
"@types/node": "^22.10.7",
"@types/nunjucks": "^3.2.6",
"tsx": "^4.19.2"
}
}