-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.28 KB
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
{
"name": "textpour",
"version": "0.1.2",
"description": "Hobby/learning project: a small geometry layer on top of @chenglou/pretext — turn any 2D shape (holes, glyphs, image masks) into the per-row spans it fills, plus cursor<->point mapping. Not a Pretext replacement.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": ["dist/src"],
"sideEffects": false,
"engines": { "node": ">=18" },
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "tsc && node --test dist/test/*.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"text", "typography", "layout", "text-layout", "shape", "shape-flow",
"canvas", "pretext", "text-measurement", "line-breaking", "kerning"
],
"author": "beansint",
"license": "MIT",
"repository": { "type": "git", "url": "git+https://github.com/beansint/textpour.git" },
"bugs": { "url": "https://github.com/beansint/textpour/issues" },
"homepage": "https://github.com/beansint/textpour#readme",
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^22.0.0"
},
"dependencies": {
"@chenglou/pretext": "^0.0.1"
}
}