-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "node-autodrawer",
"version": "1.0.0",
"description": "An \"Autodrawer\" made using Node.js",
"main": "index.js",
"scripts": {
"start": "cd dist && node Index.js",
"build": "gulp",
"buildStart": "gulp && cd dist && node Index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FelipeFlohr/autodrawer.git"
},
"keywords": [
"autodrawer"
],
"author": "Felipe Matheus Flohr",
"license": "ISC",
"bugs": {
"url": "https://github.com/FelipeFlohr/autodrawer/issues"
},
"homepage": "https://github.com/FelipeFlohr/autodrawer#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@types/node": "^17.0.21",
"gulp": "4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"typescript": "^4.6.2"
},
"dependencies": {
"jimp": "^0.16.1",
"robotjs": "^0.6.0"
}
}