-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@cto.af/linebreak",
"version": "4.0.3",
"description": "Unicode line-breaking algorithm from UAX #14",
"main": "lib/index.js",
"type": "module",
"types": "./types/index.d.ts",
"files": [
"lib/",
"types/"
],
"scripts": {
"clean": "rimraf coverage/ docs/ types/",
"docs": "typedoc",
"test": "c8 node --test test/*.test.js",
"lint": "eslint .",
"types": "tsc",
"trie": "node tools/generate_data.js",
"prebuild": "npm run clean",
"build": "npm run trie && npm run lint && npm run types && npm run docs && npm run test && npm pack --dry-run"
},
"keywords": [
"unicode",
"linebreak",
"tr14",
"uax14",
"trie",
"rules",
"tailorable"
],
"author": "Joe Hildebrand <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/linebreak.git"
},
"license": "MIT",
"dependencies": {
"@cto.af/unicode-trie-runtime": "3.2.9"
},
"devDependencies": {
"@cto.af/unicode-trie": "3.2.9",
"@peggyjs/eslint-config": "6.0.10",
"@types/node": "25.3.3",
"eslint": "10.0.2",
"rimraf": "6.1.3",
"superc8": "^12.2.4",
"typedoc": "0.28.17",
"typescript": "5.9.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}