-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@fatconyc/composer",
"version": "0.3.2",
"description": "A paragraph composer that is better than inDesign's with proper justification, optical margins/hanging punctuation, and editorial rags.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"copy-playground": "cp playground/index.html playground/styles.css playground/app.js playground/samples.js docs/",
"build": "tsup && npm run copy-playground",
"dev": "tsup --watch",
"playground": "npm run build && npx serve docs",
"playground:dev": "npm run copy-playground && esbuild src/index.ts --bundle --format=esm --outfile=docs/bundle.js --serve=3000 --servedir=docs --watch",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"typography",
"justification",
"knuth-plass",
"hyphenation",
"text-layout",
"optical-margins"
],
"repository": {
"type": "git",
"url": "https://github.com/FATCoNYC/composer"
},
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.30.0",
"dependencies": {
"@chenglou/pretext": "^0.0.3",
"hyphen": "^1.14.1",
"mdast-util-from-markdown": "^2.0.3",
"micromark": "^4.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"tsup": "^8.5.1",
"typescript": "^6.0.2"
}
}