-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"private": true,
"name": "Flot",
"description": "Open websites in a floating window",
"version": "3.0.0",
"author": {
"name": "Andrew Brey",
"email": "[email protected]"
},
"homepage": "https://flot.page",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andrewbrey/flot.git"
},
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"tw": "npx tailwindcss -i ./renderer/styles/globals.css -c ./website/tailwind.config.js -o ./website/index.css --watch --minify",
"srv": "node script/serve-website.js",
"web": "NODE_ENV=production concurrently --kill-others npm:tw npm:srv",
"build": "nextron build",
"release": "nextron build --publish always",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@cliqz/adblocker-electron": "1.33.2",
"@headlessui/react": "2.1.8",
"@heroicons/react": "2.1.5",
"classnames": "2.5.1",
"cross-fetch": "4.0.0",
"electron-better-ipc": "2.0.1",
"electron-updater": "6.3.4",
"framer-motion": "11.5.4",
"lodash": "4.17.21",
"react-use": "17.5.1",
"zustand": "4.5.5"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.9",
"@types/lodash": "4.17.7",
"@types/node": "^22.5.5",
"@types/node-fetch": "2.6.11",
"@types/react": "^18.3.7",
"autoprefixer": "^10.4.20",
"concurrently": "9.0.1",
"electron": "^32.1.1",
"electron-builder": "^25.0.5",
"electron-serve": "^2.1.1",
"electron-store": "^10.0.0",
"live-server": "1.2.2",
"next": "^14.2.12",
"nextron": "^9.1.0",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.12",
"typescript": "^5.6.2"
},
"browserslist": [
"Electron >= 32"
]
}