forked from ranbuch/accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "accessibility",
"version": "6.1.0",
"description": "add accessibility to your website",
"main": "./dist-cjs/main.js",
"module": "./dist/main.js",
"exports": {
"import": "./dist/main.js",
"require": "./dist-cjs/main.js"
},
"types": "./dist/main.d.ts",
"files": [
"dist/",
"dist-cjs/",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist dist-cjs && tsc && tsc -p tsconfig.cjs.json",
"commonjs-playground": "npm pack --pack-destination ./commonjs-test && cd ./commonjs-test && npm i && npm run playground",
"playground": "vite playground",
"check-packages": "npm-check -u -E",
"refresh-packages": "rm -rf node_modules && rm -rf package-lock.json && npm i"
},
"keywords": [
"accessibility",
"website",
"increase text size",
"underline links",
"text to speech",
"invert colors",
"gray hues",
"underline links",
"big cursor",
"reading guide",
"text to speech",
"speech to text",
"suppress animations"
],
"author": "Ran Buchnik <ranbuch@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.15.25",
"npm-check": "6.0.1",
"prettier": "3.5.3",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.2",
"tslint": "6.1.3",
"tslint-loader": "3.6.0",
"typescript": "5.8.3",
"vite": "6.3.5"
}
}