-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "ultimate-text-to-image",
"version": "1.0.1",
"description": "Generate UTF8 texts into image with auto line break for all international language, including Chinese, Japanese, Korean, etc..",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test:all": "nyc --reporter=json --reporter=text mocha tests/*.test.ts",
"test:general": "mocha tests/general.test.ts",
"test:sample": "mocha tests/sample.test.ts",
"test:lineBreakText": "mocha tests/lineBreakText.test.ts",
"--- deploy ---": "",
"tsc:build": "tsc --build --clean && tsc",
"npm:patch": "npm version patch"
},
"dependencies": {
"canvas": "^2.10.2",
"linebreak-next": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.11",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-get": "^4.0.1",
"lorem-ipsum": "^2.0.8"
},
"author": "Terence",
"license": "MIT License",
"keywords": [
"utf8",
"text2image",
"text to image",
"auto wrap",
"linebreak",
"line break",
"generate image",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/terence410/ultimate-text-to-image.git"
}
}