forked from alias-rahil/handwritten.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "handwritten.js",
"version": "16.7.0",
"description": "Convert typed text to realistic handwriting!",
"repository": {
"type": "git",
"url": "https://github.com/alias-rahil/handwritten.git/"
},
"author": "Rahil Kabani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alias-rahil/handwritten/issues"
},
"homepage": "https://github.com/alias-rahil/handwritten#readme",
"dependencies": {
"merge-img": "^2.1.3",
"pdfkit": "^0.11.0",
"unidecode-plus": "^1.0.2"
},
"bin": {
"handwritten.js": "src/bin.js"
},
"main": "src/index.js",
"keywords": [
"handwritten",
"text",
"handwriting",
"converter",
"handwriter",
"emnist-dataset",
"daniel-font",
"pen",
"pencil",
"extended-mnist"
],
"scripts": {
"releasepatch": "git add . && git commit -m 'update' && npm version patch && git push && npm publish",
"releaseminor": "git add . && git commit -m 'update' && npm version minor && git push && npm publish",
"releasemajor": "git add . && git commit -m 'update' && npm version major && git push && npm publish"
}
}