-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 936 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 936 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": "@accesslint/cli",
"version": "0.3.3",
"repository": {
"type": "git",
"url": "https://github.com/AccessLint/cli"
},
"description": "CLI tool for auditing HTML accessibility using @accesslint/core",
"type": "module",
"bin": {
"accesslint": "./dist/cli.js"
},
"exports": {
".": "./dist/audit.js",
"./inline-css": "./dist/inline-css.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/cli.ts --target=node --outdir=dist --external jsdom && bun build src/audit.ts src/inline-css.ts --target=node --outdir=dist --external jsdom --external @accesslint/core && tsc --emitDeclarationOnly",
"start": "bun src/cli.ts"
},
"dependencies": {
"@accesslint/core": "^0.8.8",
"jsdom": "^26.0.0"
},
"devDependencies": {
"@types/jsdom": "^28.0.0",
"@types/node": "^25.3.0",
"citty": "^0.1.6",
"typescript": "^5.7.0"
},
"license": "MIT"
}