-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "@github/accessibility-scanner-alt-text-plugin",
"version": "1.1.0",
"description": "Alt-text validation plugin for github/accessibility-scanner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/github/accessibility-scanner-alt-text-plugin.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"grade": "tsx --env-file=.env scripts/grade-alt-text-quality.ts"
},
"prettier": "@github/prettier-config",
"engines": {
"node": "^22.13.0 || ^24 || ^26"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@types/node": "^26.1.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"playwright": "^1.61.1",
"prettier": "^3.9.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^5.0.0"
}
}