-
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) · 959 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 959 Bytes
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": "conqr",
"version": "1.7.1",
"description": "Dead-simple TUI process runner",
"main": "dist/index.js",
"type": "module",
"bin": {
"conqr": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"conqr.schema.json"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts"
},
"keywords": [
"tui",
"process",
"runner",
"terminal",
"concurrent",
"monitor"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bohdan-shulha/conqr.git"
},
"homepage": "https://github.com/bohdan-shulha/conqr#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ink": "^4.4.1",
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19.2.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}