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
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"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": "^43.1.1",
"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"
}
}
}