This repository has been archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.62 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
70
71
72
73
74
75
76
{
"name": "@fyralabs/photon",
"version": "1.2.0",
"description": "A fast, beautiful, private web browser, designed for you",
"scripts": {
"start:renderer": "vite preview",
"dev": "NODE_ENV=development concurrently 'pnpm run dev:main' 'pnpm run dev:renderer'",
"dev:main": "nodemon --watch app -e ts --exec electron main.js",
"dev:renderer": "vite",
"build:renderer": "vite build",
"build:main": "tsc -p ./app/tsconfig.json",
"postinstall": "electron-builder install-app-deps",
"build": "concurrently 'pnpm run build:main' 'pnpm run build:renderer' && electron-builder",
"build:publish": "concurrently 'pnpm run build:main' 'pnpm run build:renderer' && electron-builder --publish always"
},
"main": "./dist-main/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fyralabs/photonBrowser.git"
},
"author": "Fyra Labs <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fyralabs/photonBrowser/issues"
},
"homepage": "https://github.com/fyralabs/photonBrowser#readme",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/pro-duotone-svg-icons": "^6.1.0",
"@fortawesome/pro-light-svg-icons": "^6.1.0",
"@fortawesome/pro-regular-svg-icons": "^6.1.0",
"@fortawesome/pro-solid-svg-icons": "^6.1.0",
"@fortawesome/pro-thin-svg-icons": "^6.1.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"@types/chrome": "^0.0.180",
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.4",
"classnames": "^2.3.1",
"color": "^4.2.1",
"concurrently": "^7.0.0",
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"electron-builder-notarize": "arvinxx/electron-builder-notarize#patch-1",
"font-color-contrast": "^11.1.0",
"framer-motion": "^6.2.8",
"lodash": "^4.17.21",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"nodemon": "^2.0.15",
"normalize-url": "^7.0.3",
"postcss": "^8.4.12",
"prettier": "^2.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.16",
"react-use": "^17.3.2",
"sass": "^1.49.9",
"scss": "^0.2.4",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"usehooks-ts": "^2.4.2",
"vite": "^2.8.6"
},
"dependencies": {
"@fyralabs/photon-engine": "^1.2.0",
"@fyralabs/photon-suggest": "^1.0.1",
"@sentry/electron": "^3.0.4",
"zod": "^3.14.2"
}
}