forked from Txio-labs/txio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.31 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
{
"name": "txio-desktop",
"productName": "txio",
"version": "1.0.0",
"description": "txio Universal Multi-Chain Desktop App",
"author": "King Vic",
"license": "ISC",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"dependencies": {},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"@tailwindcss/cli": "^4.1.18",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"build": {
"appId": "com.kingvic.txio",
"productName": "txio",
"asar": true,
"files": [
"src/**/*",
"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": "build/logo.png",
"category": "Development"
},
"win": {
"target": ["nsis"],
"icon": "build/logo.ico"
},
"mac": {
"target": ["dmg"],
"icon": "build/logo.icns"
}
}
}