-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 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
{
"name": "discord-bot-builder",
"version": "0.0.1",
"description": "A powerful piece of software to help make Discord bots easier.",
"main": "dist/index.js",
"scripts": {
"start": "npx tailwindcss -i ./src/web/css/input.css -o ./src/web/css/output.css && tsc && electron-forge start",
"package": "npx tailwindcss -i ./src/web/css/input.css -o ./src/web/css/output.css && tsc && electron-forge package",
"make": "npx tailwindcss -i ./src/web/css/input.css -o ./src/web/css/output.css && tsc && electron-forge make",
"webTest": "npx tailwindcss -i ./src/web/css/input.css -o ./src/web/css/output.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Allybe/Discord-Bot-Builder.git"
},
"preload": {
"js": "./src/preload.ts"
},
"author": "Allison",
"license": "GNU General Public License v3.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Allybe/Discord-Bot-Builder/issues"
},
"homepage": "https://github.com/Allybe/Discord-Bot-Builder#readme",
"devDependencies": {
"@electron-forge/cli": "^6.2.1",
"@electron-forge/maker-deb": "^6.2.1",
"@electron-forge/maker-rpm": "^6.2.1",
"@electron-forge/maker-squirrel": "^6.2.1",
"@electron-forge/maker-zip": "^6.2.1",
"@electron-forge/plugin-auto-unpack-natives": "^6.2.1",
"@types/download": "^8.0.5",
"@types/unzipper": "^0.10.9",
"electron": "^25.1.1",
"electron-is-dev": "^2.0.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@electron-forge/maker-dmg": "^6.2.1",
"@types/node": "^20.17.19",
"download": "^8.0.0",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^11.3.0",
"got": "^14.4.6",
"pm2": "^6.0.5",
"unzipper": "^0.10.14"
},
"overrides": {
"@types/cacheable-request": "8.3.1"
}
}