-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.17 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
{
"name": "@globus.studio/readsight",
"version": "1.0.0",
"description": "Multilingual readability library — 86 languages, 17 formulas, TeX-based syllable counting via the Frank M. Liang algorithm. Zero runtime dependencies.",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"data"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage",
"verify:parity": "php tools/verify-parity.php",
"demo": "tsx examples/demo.ts",
"prepublishOnly": "npm run build && npm run check"
},
"keywords": [
"readability",
"syllable",
"hyphenation",
"flesch-kincaid",
"gunning-fog",
"smog",
"coleman-liau",
"ari",
"lix",
"gulpease",
"wiener-sachtextformel",
"multilingual",
"tex",
"liang"
],
"author": "Yevhen Leonidov <leonidovev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MADEVAL/ReadSightJS.git"
},
"homepage": "https://github.com/MADEVAL/ReadSightJS",
"bugs": {
"url": "https://github.com/MADEVAL/ReadSightJS/issues"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"tsx": "^4.15.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}