-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.11 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
{
"name": "chat-gpt-google-extension",
"author": "wong2",
"scripts": {
"build": "node build.mjs",
"lint": "eslint --ext .js,.mjs,.jsx .",
"lint:fix": "eslint --ext .js,.mjs,.jsx . --fix",
"prepare": "husky install",
"watch": "chokidar src -c 'npm run build'"
},
"dependencies": {
"@geist-ui/core": "^2.3.8",
"@primer/octicons-react": "^17.9.0",
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"github-markdown-css": "^5.1.0",
"inter-ui": "^3.19.3",
"lodash-es": "^4.17.21",
"node-assert": "^0.0.1",
"preact": "^10.11.3",
"prop-types": "^15.8.1",
"punycode": "^2.1.1",
"react": "npm:@preact/compat@^17.1.2",
"react-clipboard-button": "^0.0.7",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-markdown": "^8.0.4",
"rehype-highlight": "^6.0.0",
"rehype-prism": "^2.1.3",
"rehype-prism-plus": "^1.5.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-reference-links": "^6.0.1",
"remark-renumber-references": "^1.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/uuid": "^9.0.0",
"@types/webextension-polyfill": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"chokidar-cli": "^3.0.0",
"esbuild": "^0.16.4",
"esbuild-style-plugin": "^1.6.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.0",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"webextension-polyfill": "^0.10.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}