forked from rootCircle/docFiller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 KB
/
package.json
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
{
"name": "doc-filler",
"version": "0.0.1",
"description": " Automated Google Docs Filling Web Extension written in JS ",
"homepage": "https://github.com/rootCircle/symmetrical-octo-spork",
"keywords": [
"Extension",
"google forms",
"webpack",
"web-ext",
"automation",
"gpt"
],
"repository": {
"type": "git",
"url": "https://github.com/rootCircle/symmetrical-octo-spork.git"
},
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/rootCircle/symmetrical-octo-spork/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "webpack --no-watch",
"watch": "webpack",
"start:firefox": "web-ext run --source-dir=dist",
"dev": "pnpm run build && concurrently --kill-others \"pnpm run watch\" \"pnpm run start:firefox\"",
"lint": "eslint . --ext .js --cache --cache-strategy content",
"format:fix": "prettier --write src",
"format:check": "prettier --check src"
},
"devDependencies": {
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.0.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"pnpm": "^8.15.1",
"prettier": "^3.2.5",
"watch": "^0.13.0",
"web-ext": "^7.11.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"dotenv": "^16.4.1",
"libphonenumber-js": "^1.10.55",
"openai": "^4.27.0",
"process": "0.11.10"
}
}