-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "@cprecioso/canvas-text-layout",
"version": "2.0.0",
"description": "A mini text layout engine for canvas",
"repository": {
"type": "git",
"url": "git+https://github.com/cprecioso/canvas-text-layout.git"
},
"homepage": "https://github.com/cprecioso/canvas-text-layout#readme",
"bugs": {
"url": "https://github.com/cprecioso/canvas-text-layout/issues"
},
"author": "Carlos Precioso <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"canvas",
"text",
"layout",
"multiline"
],
"scripts": {
"build": "tsup",
"build-docs": "typedoc",
"prepack": "tsup",
"watch": "tsup --watch"
},
"dependencies": {
"@cprecioso/iterable-helpers": "^1.0.1"
},
"devDependencies": {
"@cprecioso/tsconfig": "^2.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"sideEffects": false
}