-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
75 lines (75 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "text-to-image",
"version": "0.0.0-development",
"description": "A library for generating an image data URI representing an image containing the text of your choice.",
"author": "Fredrik Boström",
"homepage": "https://github.com/bostrom/text-to-image#readme",
"repository": "https://github.com/bostrom/text-to-image",
"bugs": {
"url": "https://github.com/bostrom/text-to-image/issues"
},
"keywords": [
"text",
"image",
"image generator",
"text generator",
"canvas",
"twitter"
],
"license": "ISC",
"type": "commonjs",
"main": "index.js",
"exports": {
".": "./index.js",
"./extensions/fileWriter": "./extensions/fileWriter.js",
"./extensions/bubbleTail": "./extensions/bubbleTail.js"
},
"scripts": {
"prepare": "husky",
"clean": "rimraf dist",
"build": "npm run clean && tsc --build",
"package": "npm run build && cp package.json README.md LICENSE dist/",
"test": "jest",
"semantic-release": "semantic-release"
},
"release": {
"pkgRoot": "dist"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"image-size": "^1.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"readimage": "^1.1.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"prettier --write"
],
"*.{json,graphql,md,css,scss,less}": [
"prettier --write"
]
},
"dependencies": {
"canvas": "^2.11.2"
}
}