|
1 | | -{ |
2 | | - "name": "docfiller", |
3 | | - "version": "1.7.1", |
4 | | - "description": "Automated Google Forms filling web extension using GenAI. Making boring form filling easy!", |
5 | | - "homepage": "https://github.com/rootCircle/docFiller", |
6 | | - "keywords": [ |
7 | | - "extension", |
8 | | - "google form", |
9 | | - "webpack", |
10 | | - "web-ext", |
11 | | - "automation", |
12 | | - "gpt" |
13 | | - ], |
14 | | - "repository": { |
15 | | - "type": "git", |
16 | | - "url": "https://github.com/rootCircle/docFiller.git" |
17 | | - }, |
18 | | - "license": "GPLv3", |
19 | | - "bugs": { |
20 | | - "url": "https://github.com/rootCircle/docFiller/issues" |
21 | | - }, |
22 | | - "engines": { |
23 | | - "node": ">=18.0.0", |
24 | | - "bun": ">=1.0.0" |
25 | | - }, |
26 | | - "scripts": { |
27 | | - "watch": "bun tools/watcher.ts", |
28 | | - "build:firefox": "BROWSER=firefox bun tools/bundler.ts", |
29 | | - "build:chromium": "BROWSER=chromium bun tools/bundler.ts", |
30 | | - "package:firefox": "BROWSER=firefox bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=firefox bun run tools/packageRename.ts", |
31 | | - "package:chromium": "BROWSER=chromium bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=chromium bun run tools/packageRename.ts", |
32 | | - "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\"", |
33 | | - "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\"", |
34 | | - "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\"", |
35 | | - "format": "biome format --write && prettier --write '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'", |
36 | | - "format:check": "biome format && prettier --check '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'", |
37 | | - "webext:lint": "web-ext lint --source-dir=build", |
38 | | - "lint": "biome lint", |
39 | | - "lint:fix": "biome lint --write", |
40 | | - "typecheck": "tsc --noEmit", |
41 | | - "spell": "cspell \"**/*.{ts,js,md,json,txt,html,css}\" \"Makefile\" --gitignore --cache", |
42 | | - "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", |
43 | | - "prepare": "husky" |
44 | | - }, |
45 | | - "type": "module", |
46 | | - "dependencies": { |
47 | | - "@langchain/anthropic": "^0.3.25", |
48 | | - "@langchain/community": "^0.3.49", |
49 | | - "@langchain/google-genai": "^0.2.16", |
50 | | - "@langchain/mistralai": "^0.2.1", |
51 | | - "@langchain/ollama": "^0.2.3", |
52 | | - "@langchain/openai": "^0.6.3", |
53 | | - "langchain": "^0.3.30", |
54 | | - "uuid": "^13.0.0" |
55 | | - }, |
56 | | - "peerDependencies": { |
57 | | - "typescript": "^5.9.3" |
58 | | - }, |
59 | | - "optionalDependencies": { |
60 | | - "@esbuild/linux-x64": "^0.25.11" |
61 | | - }, |
62 | | - "devDependencies": { |
63 | | - "@biomejs/biome": "^2.3.0", |
64 | | - "@types/chrome": "^0.1.24", |
65 | | - "@types/firefox-webext-browser": "^143.0.0", |
66 | | - "@types/fs-extra": "^11.0.4", |
67 | | - "@types/node": "^24.9.1", |
68 | | - "@types/webextension-polyfill": "^0.12.4", |
69 | | - "chokidar": "^4.0.3", |
70 | | - "concurrently": "^9.2.1", |
71 | | - "cross-env": "^10.1.0", |
72 | | - "cspell": "^9.2.2", |
73 | | - "esbuild": "^0.25.11", |
74 | | - "globals": "^16.4.0", |
75 | | - "husky": "^9.1.7", |
76 | | - "prettier": "^3.6.2", |
77 | | - "web-ext": "^9.1.0", |
78 | | - "webextension-polyfill": "^0.12.0" |
79 | | - } |
80 | | -} |
| 1 | +{ |
| 2 | + "name": "docfiller", |
| 3 | + "version": "1.7.1", |
| 4 | + "description": "Automated Google Forms filling web extension using GenAI. Making boring form filling easy!", |
| 5 | + "homepage": "https://github.com/rootCircle/docFiller", |
| 6 | + "keywords": [ |
| 7 | + "extension", |
| 8 | + "google form", |
| 9 | + "webpack", |
| 10 | + "web-ext", |
| 11 | + "automation", |
| 12 | + "gpt" |
| 13 | + ], |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "https://github.com/rootCircle/docFiller.git" |
| 17 | + }, |
| 18 | + "license": "GPLv3", |
| 19 | + "bugs": { |
| 20 | + "url": "https://github.com/rootCircle/docFiller/issues" |
| 21 | + }, |
| 22 | + "engines": { |
| 23 | + "node": ">=18.0.0", |
| 24 | + "bun": ">=1.0.0" |
| 25 | + }, |
| 26 | + "scripts": { |
| 27 | + "watch": "bun tools/watcher.ts", |
| 28 | + "build:firefox": "BROWSER=firefox bun tools/bundler.ts", |
| 29 | + "build:chromium": "BROWSER=chromium bun tools/bundler.ts", |
| 30 | + "package:firefox": "BROWSER=firefox bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=firefox bun run tools/packageRename.ts", |
| 31 | + "package:chromium": "BROWSER=chromium bun tools/bundler.ts && web-ext build --source-dir=build --overwrite-dest && BROWSER=chromium bun run tools/packageRename.ts", |
| 32 | + "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\"", |
| 33 | + "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\"", |
| 34 | + "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\"", |
| 35 | + "format": "biome format --write && prettier --write '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'", |
| 36 | + "format:check": "biome format && prettier --check '**/*.{json,md,html}' '!build/**' '!node_modules/**' '!web-ext-artifacts/**'", |
| 37 | + "webext:lint": "web-ext lint --source-dir=build", |
| 38 | + "lint": "biome lint", |
| 39 | + "lint:fix": "biome lint --write", |
| 40 | + "typecheck": "tsc --noEmit", |
| 41 | + "spell": "cspell \"**/*.{ts,js,md,json,txt,html,css}\" \"Makefile\" --gitignore --cache", |
| 42 | + "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", |
| 43 | + "prepare": "husky" |
| 44 | + }, |
| 45 | + "type": "module", |
| 46 | + "dependencies": { |
| 47 | + "@langchain/anthropic": "^1.0.0", |
| 48 | + "@langchain/community": "^0.3.49", |
| 49 | + "@langchain/google-genai": "^0.2.16", |
| 50 | + "@langchain/mistralai": "^0.2.1", |
| 51 | + "@langchain/ollama": "^0.2.3", |
| 52 | + "@langchain/openai": "^0.6.3", |
| 53 | + "langchain": "^0.3.30", |
| 54 | + "uuid": "^13.0.0" |
| 55 | + }, |
| 56 | + "peerDependencies": { |
| 57 | + "typescript": "^5.9.3" |
| 58 | + }, |
| 59 | + "optionalDependencies": { |
| 60 | + "@esbuild/linux-x64": "^0.25.11" |
| 61 | + }, |
| 62 | + "devDependencies": { |
| 63 | + "@biomejs/biome": "^2.3.0", |
| 64 | + "@types/chrome": "^0.1.24", |
| 65 | + "@types/firefox-webext-browser": "^143.0.0", |
| 66 | + "@types/fs-extra": "^11.0.4", |
| 67 | + "@types/node": "^24.9.1", |
| 68 | + "@types/webextension-polyfill": "^0.12.4", |
| 69 | + "chokidar": "^4.0.3", |
| 70 | + "concurrently": "^9.2.1", |
| 71 | + "cross-env": "^10.1.0", |
| 72 | + "cspell": "^9.2.2", |
| 73 | + "esbuild": "^0.25.11", |
| 74 | + "globals": "^16.4.0", |
| 75 | + "husky": "^9.1.7", |
| 76 | + "prettier": "^3.6.2", |
| 77 | + "web-ext": "^9.1.0", |
| 78 | + "webextension-polyfill": "^0.12.0" |
| 79 | + } |
| 80 | +} |
0 commit comments