-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.32 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.32 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
{
"name": "docfiller",
"version": "1.8.0",
"description": "Automated Google Forms filling web extension using GenAI. Making boring form filling easy!",
"homepage": "https://github.com/rootCircle/docFiller",
"keywords": [
"extension",
"google form",
"webpack",
"web-ext",
"automation",
"gpt"
],
"repository": {
"type": "git",
"url": "https://github.com/rootCircle/docFiller.git"
},
"license": "GPLv3",
"bugs": {
"url": "https://github.com/rootCircle/docFiller/issues"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"scripts": {
"watch": "bun tools/watcher.ts",
"build:firefox": "BROWSER=firefox bun tools/bundler.ts",
"build:chromium": "BROWSER=chromium bun tools/bundler.ts",
"package:firefox": "BROWSER=firefox bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=firefox bun run tools/packageRename.ts",
"package:chromium": "BROWSER=chromium bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=chromium bun run tools/packageRename.ts",
"dev:firefox": "cross-env BROWSER=firefox bun tools/bundler.ts && concurrently --kill-others \"cross-env BROWSER=firefox bun tools/watcher.ts\" \"web-ext run --source-dir=build\"",
"dev:chromium": "cross-env BROWSER=chromium bun tools/bundler.ts && concurrently --kill-others \"cross-env BROWSER=chromium bun tools/watcher.ts\" \"web-ext run -t chromium --source-dir=build\"",
"dev:firefox-android": "cross-env BROWSER=firefox bun tools/bundler.ts && concurrently --kill-others \"cross-env BROWSER=firefox bun tools/watcher.ts\" \"web-ext run -t firefox-android --source-dir=build\"",
"format": "biome format --write && prettier --write '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'",
"format:check": "biome format && prettier --check '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'",
"webext:lint": "web-ext lint --source-dir=build",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"typecheck": "tsc --noEmit",
"spell": "cspell \"**/*.{ts,js,md,json,txt,html,css}\" \"Makefile\" --gitignore --cache",
"precommit": "bun run lint && bun run format:check && bun run typecheck && bun run spell && bun run build:firefox && web-ext lint --source-dir=build && bun run build:chromium",
"prepare": "husky"
},
"type": "module",
"dependencies": {
"@langchain/anthropic": "^0.3.25",
"@langchain/community": "^0.3.49",
"@langchain/google-genai": "^0.2.16",
"@langchain/mistralai": "^0.2.1",
"@langchain/ollama": "^0.2.3",
"@langchain/openai": "^0.6.3",
"langchain": "^0.3.30",
"uuid": "^13.0.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.25.11"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@types/chrome": "^0.1.24",
"@types/firefox-webext-browser": "^143.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.9.1",
"@types/webextension-polyfill": "^0.12.4",
"chokidar": "^4.0.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"cspell": "^9.2.2",
"esbuild": "^0.25.11",
"globals": "^16.4.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"web-ext": "^9.1.0",
"webextension-polyfill": "^0.12.0"
}
}