-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.14 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
{
"name": "Drawbot",
"version": "3.20.2",
"description": "This moves the mouse to draw stuff",
"main": "index.js",
"scripts": {
"dev": "start cmd /C python gui.py && nodemon",
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1Euro7Cent/Mrballou-drawbot.git"
},
"keywords": [
"draw",
"bot",
"drawbot",
"garticphone",
"paint",
"skribbl"
],
"author": "1euro7cent",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/1Euro7Cent/Mrballou-drawbot/issues"
},
"homepage": "https://github.com/1Euro7Cent/Mrballou-drawbot#readme",
"dependencies": {
"imagemaxsize": "^0.0.2",
"jimp": "^0.22.12",
"jszip": "^3.10.1",
"mrconfig.js": "^1.1.1",
"multidither": "^1.0.5",
"nearest-rgba": "^1.0.0",
"robotjs": "^0.6.0",
"ws": "^8.16.0"
},
"devDependencies": {
"pkg": "^5.8.1"
},
"nodemonConfig": {
"events": {
"start_": "start cmd /C python gui.py"
},
"ignore": [
"/temp/*",
"*.json"
],
"watch": [
"*.js",
"*.py",
"config.json"
],
"delay": "1s"
}
}