forked from ariburaco/chatgpt-file-uploader-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.8 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
{
"name": "chatgpt-file-uploader",
"version": "1.3.0",
"description": "ChatGPT File Uploader Extended - Upload various file types to ChatGPT",
"license": "MIT",
"author": "ariburaco",
"repository": {
"type": "git",
"url": "https://github.com/ariburaco/chatgpt-file-uploader-extended"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:watch": "__DEV__=true vite build --watch",
"build:hmr": "rollup --config utils/reload/rollup.config.ts",
"wss": "node utils/reload/initReloadServer.js",
"dev": "pnpm run wss & pnpm run build:hmr & pnpm run build:watch"
},
"type": "module",
"dependencies": {
"@headlessui/react": "^1.7.14",
"classnames": "^2.3.2",
"jszip": "^3.10.1",
"pdfjs-dist": "^3.6.172",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"tesseract.js": "^4.0.6",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/react": "13.4.0",
"@types/chrome": "0.0.197",
"@types/jest": "29.0.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@vitejs/plugin-react": "2.1.0",
"autoprefixer": "^10.4.13",
"chokidar": "^3.5.3",
"eslint": "^8.28.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"fs-extra": "10.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "2.7.1",
"rollup": "2.79.1",
"sass": "1.55.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "3.1.3",
"ws": "8.9.0"
}
}