-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "readlen",
"description": "calculate reading stats for your text files with scientific precision.",
"version": "0.1.0",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"bin": {
"readlen": "./dist/index.js"
},
"scripts": {
"build": "bun build index.ts --outdir ./dist",
"check": "biome check .",
"format": "biome format . --write",
"lint": "biome lint . --write",
"prepublishOnly": "bun check && bun run build"
},
"files": ["dist", "README.md"],
"author": "ceIia <me@celiabourial.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ceIia/readlen"
},
"bugs": "https://github.com/ceIia/readlen/issues",
"homepage": "https://github.com/ceIia/readlen",
"keywords": [
"readlen",
"read time",
"reading time",
"reading stats",
"reading estimate"
]
}