-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.18 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 4.18 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
{
"name": "parchi-extension",
"version": "0.6.0",
"description": "Warm-paper browser automation extension with configurable LLM providers",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"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": "npm run dev -w @parchi/backend",
"backend:deploy": "npm run deploy -w @parchi/backend",
"backend:codegen": "npm run codegen -w @parchi/backend",
"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:coverage": "node scripts/run-coverage.mjs",
"test:integration": "node scripts/build.mjs && node dist/tests/integration/run-integration-tests.js",
"test:api": "node scripts/build.mjs && node dist/tests/api/run-api-tests.js",
"test:orchestrator": "node scripts/build.mjs && node dist/tests/orchestrator/run-fixture-executor.js",
"test:e2e": "node scripts/build.mjs && node dist/tests/e2e/run-e2e.js",
"test:e2e:orchestrator": "node scripts/build.mjs && node dist/tests/e2e/run-orchestrator-runtime-e2e.js",
"perf:tabs": "node scripts/build.mjs && node dist/tests/perf/run-tab-cpu-audit.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check:repo-standards": "node scripts/check-repo-standards.mjs",
"check:tech-debt": "node scripts/check-tech-debt.mjs",
"clean": "node scripts/clean.mjs",
"verify:version-sync": "node scripts/verify-version-sync.mjs",
"verify:version-sync:fix": "node scripts/verify-version-sync.mjs --fix",
"audit:production": "node scripts/production-readiness.mjs",
"ready:production": "npm run clean && npm run audit:production",
"lint": "biome check . --diagnostic-level=error",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check:all": "npm run lint && npm run typecheck && npm run build && npm run check:repo-standards",
"knip": "knip",
"knip:fix": "knip --fix",
"version:bump": "node scripts/bump-version.mjs",
"version:sync": "node scripts/bump-version.mjs --sync",
"release": "node scripts/bump-version.mjs && npm run build && npm run build:firefox:xpi && cd dist && zip -r ../parchi-$(node -p \"require('../package.json').version\")-chrome.zip . -x '*.map' 'tests/*'",
"release:all": "node scripts/bump-version.mjs && npm run build && npm run build:firefox:xpi && npm run publish:all",
"release:firefox": "node scripts/bump-version.mjs && npm run build:firefox:xpi && npm run publish:firefox",
"release:dry": "node scripts/bump-version.mjs && npm run build && npm run build:firefox:xpi && npm run publish:dry",
"publish:all": "node scripts/publish.mjs",
"publish:chrome": "node scripts/publish.mjs --chrome",
"publish:firefox": "node scripts/publish.mjs --firefox",
"publish:dry": "node scripts/publish.mjs --dry-run",
"dev": "echo 'Run npm run build, then load the dist/ folder in Chrome://extensions'",
"prepare": "husky"
},
"keywords": [
"chrome-extension",
"ai",
"automation",
"openai",
"anthropic",
"browser-agent"
],
"author": "",
"license": "MIT",
"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"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write"
],
"*.{json,md,css}": [
"biome format --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chrome": "0.0.268",
"@types/node": "22.10.5",
"agent-browser": "^0.11.1",
"c8": "^11.0.0",
"esbuild": "0.27.2",
"husky": "^9.1.7",
"knip": "^5.85.0",
"lint-staged": "^16.3.0",
"marked": "17.0.1",
"playwright": "1.57.0",
"typescript": "5.6.3",
"web-ext": "8.10.0"
}
}