-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 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
42
43
44
45
46
47
48
49
{
"name": "@ravishranjan/t-serve",
"version": "1.1.4",
"description": "A lightweight, terminal-based service manager for Linux systems using systemctl",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"bin": {
"t-serve": "./index.js"
},
"keywords": [
"linux",
"tui",
"systemctl",
"service-manager",
"terminal",
"blessed",
"cli"
],
"author": {
"email": "contact@ravishdev.org",
"name": "Ravish Ranjan",
"url": "https://github.com/Ravish-Ranjan"
},
"license": "GPL-2.0",
"type": "commonjs",
"engines": {
"node": ">=16.0.0"
},
"os": [
"linux"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Ravish-Ranjan/t-serve.git"
},
"bugs": {
"url": "https://github.com/Ravish-Ranjan/t-serve/issues"
},
"homepage": "https://github.com/Ravish-Ranjan/t-serve#readme",
"dependencies": {
"better-sqlite3": "^12.6.2",
"blessed": "^0.1.81"
}
}