-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "canvas-text-block",
"version": "1.1.3",
"description": "Easily render a wrapping block of text in an HTML Canvas Element.",
"main": "dist/CanvasTextBlock.common.js",
"module": "dist/CanvasTextBlock.esm.js",
"browser": "dist/CanvasTextBlock.js",
"types": "dist/CanvasTextBlock.d.ts",
"homepage": "https://github.com/blakewilson/canvas-text-block",
"bugs": {
"url": "https://github.com/blakewilson/canvas-text-block/issues"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"format": "prettier --write './src' './test'",
"build": "rollup -c"
},
"keywords": [
"canvas",
"fillText",
"graphics",
"image",
"images"
],
"author": "Blake Wilson (https://blake.id)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blakewilson/canvas-text-block.git"
},
"dependencies": {
"canvas": "^2.11.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.17.1",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}