-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 842 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 842 Bytes
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
{
"name": "hacker-gpt3-accessible-tables",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:panel && npm run build:service-worker && npm run build:content",
"preview": "vite preview",
"build:panel": "tsc && vite build",
"build:service-worker": "vite build --config vite-sw.config.js",
"build:content": "vite build --config vite-content.config.js",
"help": "vite build --mode -h"
},
"dependencies": {
"openai": "^3.1.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1"
},
"devDependencies": {
"@types/chrome": "^0.0.206",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}