This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.24 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
{
"private": true,
"name": "discord-bot-creator",
"description": "Create your Discord bot in less than 30 minutes. ",
"version": "0.0.2-alpha",
"author": "m5x5 <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "node ./scripts/nextron-dev.js",
"build": "nextron build -wl",
"build:win": "nextron build -w",
"build:linux": "nextron build -l",
"build:all": "nextron build --all",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@heroicons/react": "^1.0.3",
"@stitches/react": "^1.2.6",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/webpack-merge": "^5.0.0",
"@uiw/react-textarea-code-editor": "^1.4.13",
"arg": "^5.0.1",
"chokidar": "^3.5.3",
"discord.js": "^13.3.1",
"electron-log": "^4.4.1",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.0",
"eval": "^0.1.6",
"fast-glob": "^3.2.7",
"next-remove-imports": "^1.0.6",
"parse-function-string": "^0.1.1",
"pidtree": "^0.5.0",
"prop-types": "^15.7.2",
"rc-switch": "^3.2.2",
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
"react-select": "^5.2.2",
"sass": "^1.37.0",
"webpack-merge": "^5.8.0",
"youtubei": "^0.0.1-rc.20"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-loader": "^8.2.3",
"electron": "^16.0.5",
"electron-builder": "^22.11.7",
"electron-reloader": "^1.2.1",
"next": "^12.1.0",
"nextron": "^7.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack-cli": "^4.9.1"
},
"build": {
"appId": "com.m5x5.discord-bot-creator",
"productName": "Discord Bot Creator",
"copyright": "Copyright © 2020 Michael Peters",
"directories": {
"output": "dist",
"buildResources": "resources"
},
"files": [
"package.json",
"app",
"resources"
],
"publish": false,
"asar": true,
"asarUnpack": "resources"
}
}