-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.28 KB
/
package.json
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "TACT",
"version": "4.1.0",
"description": "A kit if Infrared Detector and Electronic Pen that transform any monitor into an Interactive Surface.",
"main": "./build/electron/main.cjs",
"homepage": "https://www.interact-labs.com/",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/Interact-Labs/TACT-SW.git"
},
"keywords": [
"TACT"
],
"author": {
"name": "Interact Labs",
"email": "info@interact-labs.com",
"url": "https://www.interact-labs.com/"
},
"contributors": [
{
"name": "Ahmed El Sharnoby",
"email": "Lan-Hekary@Gmail.com",
"url": "https://github.com/Lan-Hekary/"
}
],
"scripts": {
"start": "npm run decrypt && npm run unpack && npm run release:test",
"decrypt": "cross-var crypt-aes decrypt -k -s build.asar.caes -p $TACT_CRYPT_AES_PASSWORD",
"unpack": "asar e build.asar build",
"build": "npm run decrypt && npm run unpack",
"clean": "rm -rf out build build.asar",
"release": "electron-builder -p always",
"release:test": "electron-builder --dir && electron-builder --dir --ia32",
"test": "echo \"Passed\" && exit 0"
},
"build": {
"appId": "com.interact-labs.TACT",
"productName": "TACT",
"remoteBuild": false,
"npmRebuild": false,
"buildDependenciesFromSource": false,
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"build/**/*",
{
"from": "assets",
"to": "build/assets",
"filter": "icon.*"
},
"!node_modules/",
"node_modules/**/*.js",
"node_modules/**/*.json",
"node_modules/**/prebuilds/**/*.node"
],
"directories": {
"buildResources": "assets",
"output": "out"
},
"publish": [
{
"provider": "github",
"owner": "Interact-Labs",
"repo": "TACT-SW"
}
],
"mac": {
"target": [
"zip",
"dmg",
"pkg"
],
"icon": "assets/icon.icns",
"category": "public.app-category.productivity"
},
"win": {
"target": [
"portable:x64",
"portable:ia32",
"nsis:x64",
"nsis:ia32",
"zip:x64",
"zip:ia32",
"appx:x64",
"appx:ia32"
],
"icon": "assets/icon.ico"
},
"portable": {
"artifactName": "${productName}-Portable-${version}-${os}-${arch}.${ext}"
},
"nsis": {
"artifactName": "${productName}-Installer-${version}-${os}-${arch}.${ext}",
"oneClick": false,
"deleteAppDataOnUninstall": true,
"installerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico"
},
"appx": {
"artifactName": "${productName}-Installer-${version}-${os}-${arch}.${ext}",
"identityName": "com.interact-labs.tact",
"applicationId": "tact",
"displayName": "TACT",
"publisherDisplayName": "Interact Labs",
"publisher": "CN=Interact Labs, O=Interact Labs, S=Cairo, C=EG"
},
"linux": {
"target": [
"zip",
"deb",
"AppImage"
],
"category": "Productivity",
"executableName": "TACT",
"synopsis": "Interactive Kit"
},
"deb": {
"packageCategory": "Productivity",
"afterInstall": "assets/postInstall.sh",
"afterRemove": "assets/postRemove.sh"
}
},
"devDependencies": {
"@electron/remote": "^2.0.8",
"cross-var": "^1.1.0",
"crypt-aes": "^1.1.1",
"electron": "^19.1.3",
"electron-builder": "^23.6.0"
},
"dependencies": {
"ffi-napi": "^4.0.3",
"notp": "^2.0.3",
"ref-array-di": "^1.2.2",
"ref-union-di": "^1.0.1"
}
}