-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.23 KB
/
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
{
"name": "sinfonia",
"version": "2.0.5",
"description": "A beautiful process runner for parallel commands with interactive filtering",
"module": "dist/index.js",
"type": "module",
"bin": {
"sinfonia": "./dist/cli.js"
},
"files": ["dist", "schema.json", "starter.config.json", "README.md", "LICENSE"],
"scripts": {
"build": "bun build ./src/cli.ts --outdir ./dist --target node",
"start": "bun run dist/cli.js",
"dev": "bun run --watch src/cli.ts",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"test": "bun test tests/*.test.ts",
"test:watch": "bun test --watch tests/*.test.ts",
"test:coverage": "bun test --coverage tests/*.test.ts",
"test:init": "bun run src/cli.ts init",
"test:manual": "bun run src/cli.ts \"counter=bun test.js test1\" \"random=bun test.js test2\" \"time=bun test.js test3\""
},
"keywords": ["cli", "process-manager", "parallel", "terminal", "interactive"],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.14",
"@types/node": "^20.10.5",
"bun-types": "latest",
"typescript": "^5.3.3"
}
}