forked from wong2/chatgpt-google-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"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",
"posthog-js": "^1.39.0",
"preact": "^10.11.3",
"prop-types": "^15.8.1",
"punycode": "^2.1.1",
"react": "npm:@preact/compat@^17.1.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-markdown": "^8.0.4",
"rehype-highlight": "^6.0.0",
"swr": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/uuid": "^9.0.0",
"@types/webextension-polyfill": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@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-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.2.1",
"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"
]
}
}