-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@parallel-cli/parallel",
"version": "0.4.9",
"description": "Real-time coding agents that work like a live team on one shared repository.",
"keywords": [
"cli",
"ai",
"agents",
"multi-agent",
"coding-assistant",
"terminal",
"ink",
"openai-compatible",
"deepseek",
"real-time"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nil06/parallel-cli.git"
},
"homepage": "https://github.com/Nil06/parallel-cli#readme",
"bugs": {
"url": "https://github.com/Nil06/parallel-cli/issues"
},
"author": "Nil Amara",
"type": "module",
"bin": {
"parallel": "dist/index.js",
"prl": "dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"os": [
"linux",
"darwin"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsc --watch",
"test": "npm run build && ( [ -d test ] && node --test test/*.test.mjs && npm run test:pty || echo 'test/ directory not found, skipping tests' )",
"test:pty": "sh test/pty.sh",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"diff": "^5.2.0",
"ink": "^5.1.0",
"openai": "^4.77.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/diff": "^5.2.3",
"@types/node": "^18.19.0",
"@types/react": "^18.3.12",
"typescript": "^5.6.3"
}
}