-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 912 Bytes
/
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
{
"name": "hosty",
"version": "0.0.1-alpha.16",
"description": "A code based opinionated way to self-host and manage web apps.",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "node --import tsx test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webNeat/hosty.git"
},
"keywords": [
"self-hosting",
"ansible",
"docker",
"caddy",
"containers",
"deployment"
],
"author": "Amine Ben hammou (@webNeat)",
"license": "MIT",
"bugs": {
"url": "https://github.com/webNeat/hosty/issues"
},
"homepage": "https://github.com/webNeat/hosty",
"devDependencies": {
"@types/node": "^20.16.5",
"prettier": "^3.2.5",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"zx": "^8.1.4"
},
"dependencies": {
"yaml": "^2.4.5"
}
}