-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.75 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
{
"name": "docfiller",
"version": "1.10.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": ">=20.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",
"build:safari": "BROWSER=safari 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",
"package:safari": "BROWSER=safari bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=safari 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\"",
"dev:safari": "cross-env BROWSER=safari bun tools/bundler.ts && concurrently --kill-others \"cross-env BROWSER=safari bun tools/watcher.ts\"",
"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 && bun run build:safari",
"prepare": "husky"
},
"type": "module",
"dependencies": {
"@langchain/anthropic": "^1.5.1",
"@langchain/community": "^1.1.29",
"@langchain/core": "^1.2.1",
"@langchain/google-genai": "^2.2.0",
"@langchain/mistralai": "^1.2.0",
"@langchain/ollama": "^1.3.0",
"@langchain/openai": "^1.5.3",
"langchain": "^1.5.2",
"uuid": "^14.0.1",
"zod": "^4.4.3"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.28.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@types/chrome": "^0.2.2",
"@types/firefox-webext-browser": "^143.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.0",
"@types/webextension-polyfill": "^0.12.5",
"chokidar": "^5.0.0",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"cspell": "^10.0.1",
"esbuild": "^0.28.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"prettier": "^3.9.4",
"web-ext": "^10.4.0",
"webextension-polyfill": "^0.12.0"
}
}