-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hyperteleporter",
"version": "0.0.7",
"description": "A modern and decentralized P2P file sharing application powered by Hyperdrive. Create, share, and access files across devices without centralized servers.",
"main": "./out/main/index.js",
"author": "Caner Sevince",
"homepage": "https://github.com/executionreverted/hyperteleporter",
"repository": {
"type": "git",
"url": "https://github.com/executionreverted/hyperteleporter.git"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"release": "npm run build && electron-builder --publish=always",
"release:win": "npm run build && electron-builder --win --publish=always",
"release:mac": "npm run build && electron-builder --mac --publish=always",
"release:linux": "npm run build && electron-builder --linux --publish=always",
"release:github": "node scripts/release.js"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@gsap/react": "^2.1.2",
"@radix-ui/react-label": "^2.1.7",
"@tabler/icons-react": "^3.35.0",
"@tailwindcss/vite": "^4.1.13",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.9.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"corestore": "^7.4.7",
"downloads-folder": "^3.0.3",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.3.9",
"gsap": "^3.13.0",
"hyperbee": "^2.26.5",
"hypercore": "^11.16.2",
"hypercore-id-encoding": "^1.3.0",
"hyperdrive": "^13.0.1",
"hyperswarm": "^4.14.0",
"localdrive": "^2.2.0",
"lottie-react": "^2.4.1",
"lucide-react": "^0.544.0",
"mathjs": "^14.7.0",
"motion": "^12.23.19",
"ogl": "^1.0.11",
"protomux-rpc": "^1.7.1",
"react-dropzone": "^14.3.8",
"react-element-to-jsx-string": "^17.0.1",
"react-lottie": "^1.2.10",
"react-qr-code": "^2.0.18",
"react-router-dom": "^7.9.1",
"react-syntax-highlighter": "^15.6.6",
"react-use-measure": "^2.1.7",
"simplex-noise": "^4.0.3",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^22.18.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-lottie": "^1.2.10",
"@vitejs/plugin-react": "^5.0.3",
"autoprefixer": "^10.4.21",
"electron": "^38.1.2",
"electron-builder": "^25.1.8",
"electron-vite": "^4.0.1",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"vite": "^7.1.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}