forked from rootCircle/docFiller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "docfiller",
"version": "0.2.0",
"description": " Automated Google Docs Filling Web Extension written in JS",
"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"
},
"module": "bundler.ts",
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@types/bun": "^1.1.8",
"@types/chrome": "^0.0.246",
"bun-types": "latest",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"cspell": "^8.14.2",
"eslint": "^9.9.1",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-import": "^2.30.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"web-ext": "^8.2.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"scripts": {
"watch": "bun tsc && bun watcher.ts",
"build": "bun bundler.ts",
"dev:firefox": "bun bundler.ts && concurrently --kill-others \"bun watcher.ts\" \"web-ext run --source-dir=build\"",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,md}' '!build/**' '!node_modules/**'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,md}' '!build/**' '!node_modules/**'",
"webext:lint": "web-ext lint --source-dir=build",
"lint": "eslint . --cache --cache-strategy content",
"lint:fix": "eslint . --cache --cache-strategy content --fix",
"tsc": "tsc --noEmit",
"spell": "cspell \"**/*.{ts,js,md,json,txt,html,css}\" \"Makefile\" --gitignore",
"precommit": "bun run lint && bun run format:check && bun run tsc && bun run spell && bun run build && bun run webext:lint",
"prepare": "husky"
},
"type": "module",
"dependencies": {
"@langchain/google-genai": "^0.0.26",
"@langchain/ollama": "^0.0.4",
"@langchain/openai": "^0.2.10",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.5.4",
"dotenv": "^16.4.5",
"langchain": "^0.2.18",
"process": "^0.11.10"
}
}