forked from 0xSero/parchi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.12 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
{
"name": "parchi-extension",
"version": "0.4.0",
"description": "Warm-paper browser automation extension with configurable LLM providers",
"type": "module",
"workspaces": [
"packages/backend"
],
"scripts": {
"browser:agent": "agent-browser",
"build": "node scripts/build.mjs",
"build:firefox": "BROWSER=firefox node scripts/build.mjs",
"build:firefox:xpi": "npm run build:firefox && node scripts/build-firefox-xpi.mjs",
"backend:dev": "cd packages/backend && npx convex dev",
"relay:daemon": "node dist-relay/relay-daemon.js",
"relay": "node dist-relay/relay.js",
"validate": "node scripts/build.mjs && node dist/tests/validate-extension.js",
"test": "node scripts/build.mjs && node dist/tests/run-tests.js",
"test:unit": "node scripts/build.mjs && node dist/tests/unit/run-unit-tests.js",
"test:integration": "echo 'Load tests/integration/test-page.html in browser and run tests'",
"test:api": "node scripts/build.mjs && node dist/tests/api/run-api-tests.js",
"test:e2e": "node scripts/build.mjs && node dist/tests/e2e/run-e2e.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"dev": "echo 'Run npm run build, then load the dist/ folder in Chrome://extensions'"
},
"keywords": [
"chrome-extension",
"ai",
"automation",
"openai",
"anthropic",
"browser-agent"
],
"author": "",
"license": "MIT",
"bin": {
"parchi-relay": "dist-relay/relay.js"
},
"dependencies": {
"@ai-sdk/anthropic": "3.0.17",
"@ai-sdk/openai": "3.0.13",
"@ai-sdk/openai-compatible": "2.0.16",
"@auth/core": "0.37.4",
"@convex-dev/auth": "0.0.90",
"ai": "6.0.42",
"convex": "1.31.7",
"stripe": "18.5.0",
"ws": "8.18.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chrome": "0.0.268",
"@types/node": "22.10.5",
"@types/ws": "8.18.1",
"agent-browser": "^0.11.1",
"esbuild": "0.27.2",
"marked": "17.0.1",
"playwright": "1.57.0",
"typescript": "5.6.3",
"web-ext": "8.10.0"
}
}