This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "tnym-js",
"version": "2.4.5",
"description": "Automated tool to spam users on Tellonym",
"main": "build/main.js",
"scripts": {
"start": "electron .",
"build": "(if exist build rmdir /s /q build) && mkdir build && npm run install_externals && webpack --config webpack.main.js --mode production && webpack --config webpack.renderer.js --mode production",
"dist": "npm run build && electron-builder",
"install_externals": "npm i --prefix ./build bufferutil utf-8-validate",
"dev": "(gulp --gulpfile ./semantic/gulpfile.js build) && npm run install_externals && npm run watch",
"watch": "concurrently --kill-others \"webpack --config webpack.main.js --mode development --watch\" \"webpack --config webpack.renderer.js --mode development --watch\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"author": "FedeIlLeone",
"repository": {
"type": "git",
"url": "https://github.com/FedeIlLeone/Tnym-js"
},
"bugs": "https://github.com/FedeIlLeone/Tnym-js/issues",
"license": "GPL-3.0",
"build": {
"appId": "com.fedeilleone.tnym-js",
"productName": "Tnym-js",
"files": [
"build/**/*"
],
"extraResources": "drivers/**/*",
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "assets/icon.ico"
}
},
"dependencies": {
"electron-store": "^8.1.0",
"fomantic-ui": "^2.9.2",
"jquery": "^3.7.0",
"selenium-webdriver": "^4.10.0",
"undici": "^5.13.0"
},
"devDependencies": {
"concurrently": "^8.2.0",
"css-loader": "^6.8.1",
"electron": "^25.3.0",
"electron-builder": "^24.4.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"gulp": "^4.0.2",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}