-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 886 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
{
"name": "@fneira/stack-up",
"version": "1.0.11",
"description": "Stack-up is a simple tool written in JavaScript that allows you to run multiple programs concurrently in the terminal. It is designed to be configurable through a json file, enabling you to specify the programs you want to run, their working directories, and commands.",
"main": "dist/cli.js",
"bin": {
"stack-up": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serk7/stack-up.git"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc"
},
"keywords": [],
"author": "Bubexel",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.30",
"@types/terminal-kit": "^2.5.6",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"concurrently": "^8.2.2",
"terminal-kit": "^3.1.1"
}
}