-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 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
{
"name": "ampertox",
"productName": "AmperTox",
"version": "0.1.0",
"description": "Encrypted peer to peer messenger and Tox client for GNU/Linux, Windows and MacOS",
"keywords": [],
"license": "GPL",
"private": true,
"author": {
"name": "tox-user",
"email": "tox-user@protonmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tox-user/AmperTox.git"
},
"main": "./dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "tsc && webpack",
"build-release": "tsc && webpack --mode production --node-env production && electron-builder",
"watch": "concurrently \"tsc -w\" \"webpack --watch\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"ffi-napi": "^4.0.3",
"lodash.merge": "^4.6.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"sqlite3": "npm:@vscode/sqlite3@^5.0.7"
},
"devDependencies": {
"concurrently": "^7.1.0",
"css-loader": "^5.2.7",
"electron": "^18.0.0",
"electron-builder": "^22.14.13",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"to-string-loader": "^1.2.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"build": {
"appId": "ampertox",
"asar": false,
"files": [
"!config.json",
"!tsconfig.json",
"!webpack.config.js",
"!docs/",
"!src/"
],
"directories": {
"output": "./build/"
},
"linux": {
"category": "Network;InstantMessaging;Chat",
"target": [
"deb"
]
},
"deb": {
"depends": [
"libtoxcore2"
]
},
"win": {
"target": [
"portable"
],
"signAndEditExecutable": false
},
"mac": {
"category": "public.app-category.social-networking"
}
}
}