-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 3.4 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
{
"name": "peerd",
"private": true,
"type": "module",
"version": "0.2.7",
"description": "Browser-native AI agent harness. Solo dev — Bun is for tests + one-shot vendor scripts only; the extension itself runs no build step.",
"license": "Apache-2.0",
"homepage": "https://peerd.ai",
"repository": {
"type": "git",
"url": "https://github.com/NotASithLord/peerd"
},
"bugs": {
"url": "https://github.com/NotASithLord/peerd/issues"
},
"scripts": {
"test": "bun test ./tests",
"test:watch": "bun test ./tests --watch",
"red-team": "bun test ./tests/red-team",
"red-team:report": "bun tests/red-team/report.ts",
"test:netproc": "bun tests/peerd-distributed/netproc/run-cluster.ts",
"test:twopeer": "bun scripts/cdp/run-dweb-twopeer.mjs",
"test:twopeer:a2a": "A2A=1 bun scripts/cdp/run-dweb-twopeer.mjs",
"test:twopeer:conv": "CONV=1 bun scripts/cdp/run-dweb-twopeer.mjs",
"e2e:verify": "bun scripts/cdp/run-e2e-verify.mjs",
"test:e2e": "bun scripts/cdp/run-e2e-verify.mjs --functional",
"test:e2e:all": "bun scripts/cdp/run-e2e-verify.mjs --functional",
"test:e2e:goal": "bun scripts/cdp/run-e2e-verify.mjs --only=goal",
"test:e2e:stop": "bun scripts/cdp/run-e2e-verify.mjs --only=stop",
"test:e2e:error": "bun scripts/cdp/run-e2e-verify.mjs --only=error",
"test:e2e:visual": "bun scripts/cdp/run-e2e-verify.mjs --visual",
"test:e2e:visual:update": "UPDATE_BASELINES=1 bun scripts/cdp/run-e2e-verify.mjs --visual",
"e2e:chrome": "bun scripts/cdp/ensure-chrome-for-testing.mjs",
"eval:bench": "bun scripts/cdp/run-eval-bench.mjs",
"eval:bench:smoke": "bun scripts/cdp/run-eval-bench.mjs --smoke",
"eval:context": "bun scripts/cdp/run-eval-context.mjs",
"typecheck": "tsc",
"lint": "eslint extension",
"package": "bun packaging/package.ts",
"package:all": "bun packaging/package.ts --all",
"preflight": "bun packaging/preflight.ts",
"release": "bun packaging/release.ts",
"feeds:check": "bun packaging/check-feeds.ts",
"gen:dev": "bun packaging/gen-manifest.ts --channel=dev --browser=chrome && bun packaging/gen-channel-config.ts --channel=preview && bun packaging/gen-tscheck-badge.ts",
"gen:badge": "bun packaging/gen-tscheck-badge.ts",
"check:boundary": "bun packaging/check-dweb-boundary.ts",
"check:tscheck": "bun packaging/check-tscheck.ts",
"check:imports": "bun packaging/check-packaged-imports.ts",
"check:pages": "bun scripts/cdp/check-packaged-pages.mjs",
"check:docpaths": "bun packaging/check-doc-paths.ts",
"verify:store": "bun packaging/verify-store-artifact.ts",
"feeds": "bun packaging/gen-update-feeds.ts",
"vendor:codemirror": "bun run scripts/vendor-codemirror.ts"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"@types/bun": "^1.3.14",
"@types/chrome": "^0.2.0",
"@types/webextension-polyfill": "^0.12.5",
"codemirror": "^6.0.2",
"crx3": "^2.0.0",
"eslint": "10.4.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.6.0",
"typescript": "^6.0.3",
"web-ext": "10.3.0"
}
}