-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "gbcam",
"version": "4.0.0",
"description": "Lo-fi camera for those nostalgic 90s kids.",
"type": "module",
"author": {
"name": "Oscar R.C.",
"email": "oscarrc.web@gmail.com",
"url": "https://oscarrc.me"
},
"repository": {
"url": "https://github.com/oscarrc/gbcam",
"type": "git"
},
"homepage": "./",
"private": true,
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"vite": "^5.3.5"
},
"devDependencies": {
"@bubblewrap/cli": "^1.22.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.10",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.20.1",
"vite-plugin-svgr": "^4.2.0"
},
"scripts": {
"start": "vite --host",
"preview": "vite preview",
"build": "vite build",
"predeploy": "npm run build && cp build/index.html build/200.html",
"deploy": "surge build gbcam.oscarrc.me",
"bubblewrap:init": "bubblewrap init --manifest https://gbcam.oscarrc.me/manifest.webmanifest --directory dist/android/",
"bubblewrap:build": "cd dist/android && bubblewrap build",
"bubblewrap:update": "cd dist/android && bubblewrap update --manifest twa-manifest.json"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}