-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "chat-gpt-search-engine-extension",
"scripts": {
"build": "node build.mjs --production",
"build:safari": "bash ./safari/build.sh",
"dev": "node build.mjs --development",
"analyze": "node build.mjs --analyze",
"lint": "eslint --ext .js,.mjs,.jsx .",
"lint:fix": "eslint --ext .js,.mjs,.jsx . --fix",
"pretty": "prettier --write ./**/*.{js,mjs,jsx,json,css,scss}",
"stage": "run-script-os",
"stage:default": "git add $(git diff --name-only --cached --diff-filter=d)",
"stage:win32": "powershell git add $(git diff --name-only --cached --diff-filter=d)",
"verify": "node .github/workflows/scripts/verify-search-engine-configs.mjs"
},
"pre-commit": [
"pretty",
"stage",
"lint"
],
"dependencies": {
"@nem035/gpt-3-encoder": "^1.1.7",
"@picocss/pico": "^1.5.6",
"@primer/octicons-react": "^17.11.1",
"countries-list": "^2.6.1",
"eventsource-parser": "^0.1.0",
"expiry-map": "^2.0.0",
"file-saver": "^2.0.5",
"github-markdown-css": "^5.2.0",
"gpt-3-encoder": "^1.1.4",
"katex": "^0.16.4",
"lodash-es": "^4.17.21",
"parse5": "^6.0.1",
"preact": "^10.11.3",
"prop-types": "^15.8.1",
"react": "npm:@preact/compat@^17.1.2",
"react-bootstrap-icons": "^1.10.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-draggable": "^4.4.5",
"react-markdown": "^8.0.5",
"react-tabs": "^4.2.1",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.20.13",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@types/archiver": "^5.3.1",
"@types/fs-extra": "^11.0.1",
"@types/jsdom": "^21.1.0",
"@types/webextension-polyfill": "^0.10.0",
"archiver": "^5.3.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"fs-extra": "^11.1.0",
"jsdom": "^21.1.0",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.2",
"node-fetch": "^3.3.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"progress-bar-webpack-plugin": "^2.1.0",
"run-script-os": "^1.1.6",
"sass": "^1.58.1",
"sass-loader": "^13.2.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0"
}
}