forked from Txio-labs/txio-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.92 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
{
"name": "txio-desktop",
"productName": "txio",
"version": "1.0.0",
"description": "txio Universal Multi-Chain Desktop App",
"author": "King Vic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Txio-labs/txio.git"
},
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"dependencies": {},
"devDependencies": {
"electron": "43.2.0",
"electron-builder": "^26.15.3",
"@tailwindcss/cli": "^4.3.3",
"autoprefixer": "^10.5.4",
"postcss": "^8.5.20",
"tailwindcss": "^4.3.3"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"build": {
"appId": "com.kingvic.txio",
"productName": "txio",
"asar": true,
"publish": {
"provider": "github",
"releaseType": "release"
},
"files": [
"src/index.js",
"src/assets/**",
"dist/**/*",
"build/**/*",
"package.json",
"!**/*.map",
"!**/*.ts",
"!**/*.tsx",
"!**/*.test.*",
"!**/__tests__/**",
"!**/node_modules/.bin",
"!**/node_modules/*/{README.md,readme.md,README}",
"!**/node_modules/*/{test,tests,__tests__}"
],
"electronLanguages": ["en"],
"linux": {
"target": ["AppImage"],
"icon": "src/assets/logo-B-VeRwKK.png",
"category": "Development"
},
"win": {
"target": ["nsis"],
"icon": "src/assets/logo-B-VeRwKK.png"
},
"mac": {
"target": ["dmg"],
"icon": "src/assets/logo-B-VeRwKK.png"
}
},
"overrides": {
"axios": "^1.18.1",
"form-data": "^4.0.6",
"ws": "^8.20.2",
"postcss": "^8.5.20",
"cross-spawn": "^7.0.6",
"micromatch": "^4.0.8",
"braces": "^3.0.3",
"path-to-regexp": "^6.3.0",
"brace-expansion": "^5.0.8",
"minimatch": "^9.0.5",
"ejs": "^3.1.10",
"filelist": "^1.0.4",
"jake": "^10.9.2",
"glob": "^10.4.5"
}
}