-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.43 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.43 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
105
106
107
108
109
110
111
{
"name": "ton-browser",
"version": "1.6.2",
"description": "Browse tonsites on The Open Network, Privately.",
"homepage": "https://tonnet.resistance.dog",
"bugs": {
"url": "https://github.com/TONresistor/Tonnet-Browser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TONresistor/Tonnet-Browser.git"
},
"main": "./out/main/index.js",
"author": {
"name": "Digital Resistance",
"email": "tonresistor@users.noreply.github.com",
"url": "https://resistance.dog"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,css}\"",
"type-check": "tsc --noEmit && tsc -p tsconfig.main.json --noEmit && tsc -p tsconfig.preload.json --noEmit && tsc -p tsconfig.node.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"start": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"prepare": "husky",
"build:unpack": "npm run build && electron-builder --dir",
"build:linux": "npm run build && electron-builder --linux",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"clean": "rimraf out dist release",
"validate": "npm run type-check && npm run lint && npm run format:check && npm test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/inter": "^5.2.8",
"@ton/core": "0.63.1",
"@ton/crypto": "3.3.0",
"@ton/ton": "16.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-log": "^5.4.3",
"i18next": "^26.0.4",
"lottie-react": "^2.4.1",
"lucide-react": "^1.8.0",
"qrcode": "1.5.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-i18next": "17.0.2",
"tailwind-merge": "^3.5.0",
"ws": "^8.20.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/qrcode": "1.5.6",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.16",
"babel-plugin-react-compiler": "^1.0.0",
"electron": "^41.0.4",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.4.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.5.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{json,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=22"
}
}