-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.83 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "psyche-build",
"version": "0.0.1",
"description": "Multiagent coding harness: parallel agent lanes in isolated tmux panes and git worktrees.",
"type": "module",
"author": "Valentina Alexander",
"license": "MIT",
"homepage": "https://github.com/OpenCoven/psyche-build#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenCoven/psyche-build.git"
},
"bugs": {
"url": "https://github.com/OpenCoven/psyche-build/issues"
},
"keywords": [
"agents",
"terminal",
"tmux",
"worktree",
"git",
"openclaw",
"coding-agents"
],
"engines": {
"node": ">=18.11.0"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"psyche",
"CHANGELOG.md",
"README.md",
"docs/README.md",
"docs/BREAKING-CHANGES.md",
"docs/BRIDGE-SECURITY.md",
"docs/COVEN-DEMO-LOOP.md",
"docs/COVEN-SESSIONS.md",
"docs/PRODUCT-SPEC.md",
"docs/RELEASE.md",
"docs/SMOKE.md",
"CONTRIBUTING.md",
"LICENSE"
],
"scripts": {
"build": "pnpm run generate:hooks-docs && pnpm run build:frontend && tsc",
"build:frontend": "pnpm --filter psyche-build-frontend run build",
"build:tauri": "pnpm --filter psyche-build-tauri run build",
"app:stable": "node scripts/build-macos-app.mjs stable",
"dev:tauri": "pnpm --filter psyche-build-tauri run dev",
"app:dev": "node scripts/build-macos-app.mjs dev",
"generate:hooks-docs": "node scripts/generate-hooks-docs.js",
"clean": "rm -rf dist src/utils/generated-agents-doc.ts",
"dev": "pnpm run generate:hooks-docs && tsc && PSYCHE_DEV=true PSYCHE_DEV_WATCH=false node dist/index.js",
"dev:watch": "pnpm run generate:hooks-docs && tsc && pnpm run dev:watch:run",
"dev:watch:run": "node scripts/dev-watch-run.js",
"dev:doctor": "pnpm run generate:hooks-docs && tsc && node ./psyche doctor",
"typecheck": "pnpm run generate:hooks-docs && tsc --noEmit && pnpm run typecheck:tests",
"typecheck:tests": "tsc -p tsconfig.test.json",
"fixtures:generate": "tsx scripts/generate-protocol-fixtures.ts",
"ios:project:generate": "xcodegen generate --spec native/ios/project.yml --project native/ios",
"ios:project:check": "pnpm ios:project:generate && git diff --exit-code -- native/ios/Psyche.xcodeproj native/ios/PsycheApp/Resources/Info.plist",
"release:version": "node scripts/release-version.mjs --set",
"release:check": "node scripts/release-version.mjs --check",
"release:testflight": "node scripts/app-store-connect.mjs wait-and-localize",
"test": "vitest --run",
"smoke": "pnpm run build && vitest --run -c vitest.smoke.config.ts",
"prepublishOnly": "pnpm run build",
"smoke:pack": "npm pack --dry-run"
},
"bin": {
"psyche": "psyche"
},
"dependencies": {
"bonjour-service": "^1.4.4",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"cli-highlight": "^2.1.11",
"ink": "^5.2.1",
"ink-text-input": "^6.0.0",
"p-queue": "^9.3.3",
"qrcode-terminal": "^0.12.0",
"react": "^18.3.1",
"selfsigned": "^2.4.1",
"string-width": "^7.2.0",
"vue": "^3.5.41",
"ws": "^8.21.3"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^20.19.43",
"@types/react": "^18.3.31",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/coverage-v8": "^1.6.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ink-testing-library": "^4.0.0",
"npm-run-all2": "^8.0.4",
"strip-ansi": "^7.2.0",
"tsx": "^4.23.11",
"typescript": "^5.9.3",
"vite": "^6.4.3",
"vitest": "^1.6.1"
},
"packageManager": "pnpm@10.14.0",
"publishConfig": {
"access": "public"
}
}