Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
160 changes: 80 additions & 80 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,80 +1,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"
}
}
{
"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": "^1.0.1",
"@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"
}
}