-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "TextEffects",
"version": "v1.0.0",
"description": "A GUI for TWSpam",
"main": "main.js",
"devDependencies": {
"electron": "^1.4.15"
},
"scripts": {
"pack:macos": "electron-packager . TWSpam --out=dist/osx --platform=darwin --arch=x64 --icon=assets/twspam1024.icns app-version=1.0.1",
"pack:linux64": "electron-packager . TWSpam --out=dist/linux --platform=linux --arch=x64 app-version=1.0.1",
"pack:win64": "electron-packager . TWSpam --out=dist/win --platform=win32 --arch=x64 app-version=1.0.1 --icon=assets/twspamico.ico",
"build": "npm run pack:macos && npm run pack:win64 && npm run pack:linux64",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "https://github.com/dirranshad/twspam.git"
},
"keywords": [
"twspam",
"spam",
"text",
"edit",
"gui"
],
"author": "DirranShad and Cyber-Shadow",
"license": "MIT",
"bugs": {
"url": "https://github.com/dirranshad/twspam/issues"
},
"homepage": "https://github.com/dirranshad/twspam#readme",
"dependencies": {
"jquery": "^3.1.1",
"python-shell": "^0.4.0"
}
}