-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 992 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
40
41
42
43
44
45
46
{
"name": "img2gcode",
"version": "1.2.0",
"description": "convert jpg, png, gif to gcode with nodejs and jimp.",
"main": "./src/index.js",
"typess": "./src/img2gcode.d.ts",
"scripts": {
"build": "tsc --project ./src",
"start": "npm run build; npm runtest",
"test": "node ./tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaraniMatias/img2gcode.git"
},
"author": "Marani Matias Ezequiel",
"email": "maranimatias@gmail.com",
"license": "MIT",
"dependencies": {
"jimp": "^0.16.1"
},
"devDependencies": {
"@jimp/types": "^0.16.1",
"@types/node": "^14.14.1",
"progress": "^2.0.3",
"typescript": "^4.0.3"
},
"keywords": [
"img",
"png",
"jpeg",
"gcode",
"img2gcode",
"imgtogcode",
"img to gcode",
"png2gcode",
"png to gcode",
"jpeg2gcode",
"jpeg to gcode",
"image to gcode",
"image to cnc"
],
"engines": {
"node": ">=10.15.3"
}
}