-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
191 lines (191 loc) · 5.62 KB
/
Copy pathpackage.json
File metadata and controls
191 lines (191 loc) · 5.62 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"name": "agents-party",
"version": "0.7.2",
"mcpName": "io.github.1gr14/agents-party",
"description": "/party — the skill that lets your agent sessions talk to each other. Claude Code, Cursor, Codex or any other agent: an open-standard skill plus the CLI behind it, on one machine or across machines.",
"keywords": [
"agent",
"agents",
"multi-agent",
"claude",
"claude-code",
"cursor",
"codex",
"chat",
"channel",
"party",
"collaboration",
"cli",
"sqlite",
"encryption"
],
"license": "MIT",
"author": {
"name": "Sergei Dmitriev",
"url": "https://1gr14.dev"
},
"homepage": "https://github.com/1gr14/agents-party#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/1gr14/agents-party.git"
},
"bugs": {
"url": "https://github.com/1gr14/agents-party/issues"
},
"funding": "https://1gr14.dev/support",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"import": "./dist/ui/index.js"
}
},
"bin": {
"agents-party": "./dist/cli.js"
},
"typesVersions": {
"*": {
"": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/**/*",
"web/dist/**/*",
"skills/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsc-watch --preserveWatchOutput --project tsconfig.build.json",
"dev:npm": "tsc-watch --preserveWatchOutput --project tsconfig.build.json --onSuccess 'bun run pack:dist'",
"build": "tsdown && bun run build:web",
"build:web": "point0 build --engine ./web/src/engine.ts --side client",
"dev:web": "point0 dev --engine ./web/src/engine.ts",
"test": "bun test ./src",
"test:us": "bun test ./src --update-snapshots",
"test:watch": "bun test --watch",
"test:coverage": "bun test ./src --coverage",
"smoke": "node scripts/smoke.mjs",
"check:package": "publint && attw --pack . --profile esm-only",
"lint": "bun run lint:fix .",
"lint:base": "eslint --cache --cache-location node_modules/.cache/eslint/.eslintcache",
"lint:fix": "bun run lint:base --fix",
"format": "bun run format:fix .",
"format:base": "prettier --cache --cache-location node_modules/.cache/prettier/.prettiercache --ignore-path .gitignore --ignore-path .prettierignore",
"format:fix": "bun run format:base --write",
"types:build": "node node_modules/typescript/bin/tsc --noEmit --project tsconfig.build.json",
"types": "node node_modules/typescript-7/bin/tsc --noEmit",
"types:6": "node node_modules/typescript/bin/tsc --noEmit",
"release": "bun run scripts/release.ts",
"publish:packages": "bun run scripts/publish.ts",
"check:channel": "bun run scripts/check-channel.ts",
"check:distribution": "bun run scripts/distribution-check.ts",
"pack:dry": "npm pack --dry-run",
"pack:dist": "mkdir -p dist-npm && npm pack --pack-destination dist-npm --silent && cd dist-npm && tar -xzf *.tgz && cp -r package/* . && rm -rf package && rm *.tgz",
"pack:dist:hard": "rimraf dist-npm && bun run pack:dist",
"prepare": "husky || true",
"clean": "rimraf dist && rimraf dist-npm && rimraf node_modules/.cache"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"peerDependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff2html": "^3.4.56",
"lucide-react": "^0.560.0 || ^1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.4.0",
"@tanstack/react-virtual": "^3.13.0"
},
"peerDependenciesMeta": {
"class-variance-authority": {
"optional": true
},
"clsx": {
"optional": true
},
"diff2html": {
"optional": true
},
"lucide-react": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"tailwind-merge": {
"optional": true
},
"@tanstack/react-virtual": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@point0/compiler": "^0.3.5",
"@point0/core": "^0.3.5",
"@point0/engine": "^0.3.5",
"@point0/react-dom": "^0.3.5",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-virtual": "^3.14.9",
"@types/bun": "^1.3.14",
"@types/node": "^20.0.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@unhead/react": "^3.1.1",
"@vitejs/plugin-react": "^6.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff2html": "^3.4.56",
"esbuild": "^0.28.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"lucide-react": "^0.560.0",
"prettier": "^3.9.6",
"prettier-plugin-jsdoc": "^1.8.1",
"publint": "^0.3.21",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rimraf": "^6.1.3",
"superjson": "^2.2.6",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.3.3",
"tsc-watch": "^7.2.0",
"tsdown": "^0.22.1",
"typescript": "^6.0.0",
"typescript-7": "npm:typescript@7.0.1-rc",
"typescript-eslint": "^8.65.0",
"unhead": "^3.1.1",
"vite": "^8.2.0",
"wouter": "^3.10.0"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}