-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 940 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 940 Bytes
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
{
"name": "data-bionic-reading",
"version": "2.0.1",
"type": "module",
"description": "Effortless bionic reading support for web content—improves readability by emphasizing approximately the first half of each word. Perfect for blogs, articles, and long-form content.",
"keywords": [
"bionic-reading",
"accessibility",
"a11y",
"readability",
"web-content"
],
"main": "dist/reading.esm.js",
"module": "dist/reading.esm.js",
"unpkg": "dist/reading.min.js",
"exports": {
".": {
"require": null,
"import": "./dist/reading.esm.js",
"default": "./dist/reading.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint . --fix",
"lint:check": "eslint .",
"build": "node scripts/build.js",
"prebuild": "npm run lint:check"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"esbuild": "^0.27.4"
}
}