-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.01 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "textlens",
"version": "1.0.11",
"description": "Fast, zero-dependency text analysis and readability toolkit for Node.js",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"textlens": "./bin/textlens.js"
},
"files": [
"dist",
"bin",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"readability",
"text-analysis",
"flesch",
"flesch-kincaid",
"sentiment",
"sentiment-analysis",
"seo",
"keywords",
"keyword-extraction",
"tfidf",
"summarize",
"cli",
"readability-score",
"content-analysis",
"nlp",
"natural-language-processing",
"gunning-fog",
"coleman-liau",
"smog",
"dale-chall",
"reading-time",
"keyword-density",
"text-statistics",
"typescript",
"prose",
"writing",
"editor",
"grade-level",
"text-complexity",
"word-count",
"sentence-length",
"writing-quality",
"hemingway",
"text-readability"
],
"author": "ckmtools",
"license": "MIT",
"homepage": "https://ckmtools.dev/textlens/",
"repository": {
"type": "git",
"url": "https://github.com/ckmtools/textlens"
},
"funding": [
{
"type": "custom",
"url": "https://buy.stripe.com/4gMbJ16rM3MJ4HZ4hGf7i00"
},
{
"type": "github",
"url": "https://github.com/sponsors/ckmtools"
}
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.3",
"tsup": "^8",
"typescript": "^5",
"vitest": "^3"
}
}