This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.47 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.47 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "torchat3",
"version": "1.0.0",
"description": "torchat3",
"main": "main.js",
"scripts": {
"webpack": "webpack",
"electron": "electron .",
"start": "webpack --mode development&&electron .",
"sandbox": "webpack --mode development&&electron --enable-sandbox .",
"electronSandbox": "electron --enable-sandbox .",
"webpackDev": "webpack --mode development",
"hot": "npm-run-all --parallel webpackDev electronSandbox",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjs104901/torchat3.git"
},
"keywords": [
"tor",
"chat"
],
"author": "kjs104901",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/kjs104901/torchat3/issues"
},
"homepage": "https://github.com/kjs104901/torchat3#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"electron": "^5.0.0",
"electron-builder": "^20.39.0",
"electron-reload": "^1.4.0",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.6.0",
"npm-run-all": "^4.1.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"base32.js": "^0.1.0",
"csv-parse": "^4.4.1",
"identicon.js": "^2.3.3",
"lowdb": "^1.0.0",
"node-notifier": "^5.4.0",
"prop-types": "^15.7.2",
"rc-progress": "^2.3.0",
"react": "^16.8.6",
"react-collapsible": "^2.6.0",
"react-dom": "^16.8.6",
"react-file-drop": "^0.2.8",
"react-perfect-scrollbar": "^1.5.0",
"react-select": "^2.4.3",
"react-switch": "^5.0.0",
"sha3": "^2.0.1",
"socks": "^2.3.2",
"supercop.js": "^2.0.1",
"sweetalert2": "^8.9.0",
"sweetalert2-react-content": "^1.1.0"
},
"build": {
"appId": "com.kjs104901.torchat3",
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "./assets/icon.ico"
},
"nsis": {
"oneClick": true,
"createDesktopShortcut": "always",
"installerHeaderIcon": "./assets/icon.ico"
},
"asar": true,
"asarUnpack": [
"data/**",
"tor/bin/**"
]
}
}