forked from sailist/chatgpt-enhancement-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "chatgpt-enhancement-extension",
"version": "1.3.3",
"description": "An all-in-one extension to improve your ChatGPT experience!",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sailist/chatgpt-enhancement-extension"
},
"scripts": {
"build": "rm -rf ./dist && vite build --outDir dist && zip -r dist.zip ./dist/*",
"build:watch": "cross-env __DEV__=true vite build --mode dev --watch --outDir out",
"build:hmr": "rollup --config utils/reload/rollup.config.ts",
"wss": "node utils/reload/initReloadServer.js",
"dev": "npm run build:hmr && (run-p wss build:watch)",
"test": "jest"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "^1.2.6",
"@mozilla/readability": "^0.4.4",
"clsx": "^1.2.1",
"immer": "^9.0.21",
"jsdom": "^21.1.1",
"jszip": "^3.10.1",
"mixpanel-browser": "^2.46.0",
"postcss-prefix-selector": "^1.16.0",
"postcss-selector-not": "^7.0.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/react": "13.4.0",
"@types/chrome": "0.0.224",
"@types/jest": "29.0.3",
"@types/node": "18.15.11",
"@types/postcss-prefix-selector": "^1.15.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.11",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.38.1",
"@vitejs/plugin-react": "2.2.0",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"fs-extra": "11.1.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.5.0",
"npm-run-all": "^4.1.5",
"pdfjs-dist": "^3.5.141",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "2.7.1",
"rollup": "2.79.1",
"sass": "1.55.0",
"tailwindcss": "^3.3.1",
"ts-jest": "29.0.2",
"ts-loader": "9.4.2",
"typescript": "4.8.3",
"vite": "3.1.3",
"ws": "8.9.0"
}
}