-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.91 KB
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
{
"name": "ai-web-browser",
"version": "1.0.0",
"description": "A React Electron web browser with tabs",
"main": "public/main.js",
"type": "module",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run react-dev\" \"wait-on http://localhost:3000 && NODE_ENV=development electron .\"",
"server": "tsx watch server/index.ts",
"react-dev": "vite",
"react-build": "vite build",
"electron-dev": "NODE_ENV=development electron .",
"build": "npm run react-build && electron-builder",
"dist": "npm run react-build && electron-builder --publish=never",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@liveblocks/client": "^3.3.1",
"@liveblocks/node": "^3.3.1",
"@liveblocks/react": "^3.3.1",
"@liveblocks/react-ui": "^3.3.1",
"@types/turndown": "^5.0.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"motion": "^12.23.12",
"turndown": "^7.2.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"electron": "^37.2.6",
"electron-builder": "^24.13.3",
"postcss": "^8.4.40",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.6",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.example.ai-web-browser",
"productName": "AI Web Browser",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"public/main.js",
"node_modules/**/*"
]
}
}