-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 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
{
"name": "agent-socket-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"description": "A relay that lets any web app expose itself to AI chats via a paste-able URL.",
"repository": {
"type": "git",
"url": "https://github.com/teenybase/agentsocket.git"
},
"homepage": "https://agentsocket.dev",
"bugs": "https://github.com/teenybase/agentsocket/issues",
"workspaces": [
"relay",
"sdk",
"cli",
"harness"
],
"scripts": {
"dev": "bash scripts/deploy.sh dev",
"check": "npm run check -w relay && npm run check -w sdk",
"build": "npm run build -w sdk && bash chrome-extension/scripts/vendor-sdk.sh",
"ext:vendor": "bash chrome-extension/scripts/vendor-sdk.sh",
"harness": "node harness/run.mjs all",
"ext:test": "xvfb-run -a -s \"-screen 0 1280x900x24\" node chrome-extension/test/e2e.mjs",
"ext:test:unit": "node chrome-extension/test/reconnect.unit.mjs",
"ext:test:reconnect": "node chrome-extension/test/reconnect.e2e.mjs",
"test": "npm run check && npm run harness && npm run ext:test:unit",
"deploy": "bash scripts/deploy.sh deploy",
"deploy:test": "bash scripts/test-deploy.sh"
}
}