-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "@cto.af/linewrap",
"version": "4.0.1",
"description": "Wrap lines using the Unicode Line Breaking algorithm from UAX #14",
"main": "lib/index.js",
"type": "module",
"types": "types/index.d.ts",
"files": [
"lib/*",
"types/*"
],
"scripts": {
"clean": "rimraf docs types",
"test": "c8 node --test test/*.test.js",
"lint": "eslint .",
"docs": "typedoc",
"types": "tsc",
"prebuild": "npm run clean",
"build": "npm run types && npm run lint && npm run docs && npm run test && npm pack --dry-run"
},
"keywords": [
"uax14",
"word-wrap",
"wordwrap",
"linebreak",
"unicode",
"grapheme",
"cluster"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/linewrap.git"
},
"license": "MIT",
"dependencies": {
"@cto.af/linebreak": "4.0.3",
"@cto.af/string-width": "5.0.1"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-plugin-mocha": "^11.2.0",
"rimraf": "^6.1.3",
"superc8": "^12.3.1",
"typedoc": "^0.28.17",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.13"
}
}