-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
69
70
71
72
{
"name": "parallax-cli",
"version": "0.0.9",
"description": "Local-first AI orchestration CLI for software tasks, plans, approvals, and pull requests.",
"type": "module",
"keywords": [
"ai",
"cli",
"developer-tools",
"automation",
"coding-agent",
"linear",
"github",
"pull-request",
"orchestrator",
"parallax"
],
"bin": {
"parallax": "dist/cli/src/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint src test scripts vitest.config.ts",
"lint:fix": "eslint src test scripts vitest.config.ts --fix",
"prepack": "node ./scripts/prepare-package.mjs",
"postpack": "node ./scripts/restore-workspace-links.mjs",
"pack:check": "npm_config_cache=.npm-cache npm pack --dry-run",
"pack:tarball": "npm_config_cache=.npm-cache npm pack",
"publish:package": "npm_config_cache=.npm-cache npm publish --access public",
"start": "tsx src/index.ts",
"test": "vitest run"
},
"engines": {
"node": ">=23.7.0"
},
"dependencies": {
"@fastify/cors": "11.2.0",
"@parallax/common": "workspace:*",
"@parallax/orchestrator": "workspace:*",
"@parallax/ui": "workspace:*",
"chalk": "4",
"dotenv": "16.4.7",
"fastify": "5.7.4",
"js-yaml": "4.1.0",
"log-update": "7.1.0",
"p-limit": "6.1.0",
"simple-git": "3.32.3",
"socket.io": "4.8.3",
"strip-ansi": "7.1.2",
"terminal-size": "4.0.1",
"uuid": "11.0.0"
},
"bundleDependencies": [
"@parallax/common",
"@parallax/orchestrator",
"@parallax/ui"
],
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "25.3.0",
"tsx": "4.19.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"url": "https://github.com/maxigimenez/parallax-cli"
}
}