-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (48 loc) · 1.43 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
{
"name": "@accesslint/core",
"version": "0.8.8",
"description": "Pure accessibility rule engine — WCAG audit with zero browser dependencies",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./iife": "./dist/index.iife.js"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build --config vite.lib.config.ts && vite build --config vite.iife.config.ts && tsc -p tsconfig.lib.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:memory": "vitest run --config vite.memory.config.ts",
"act:download": "scripts/download-act-fixtures.sh && npx tsx src/act/download-fixtures.ts",
"test:act": "vitest run src/act/act.test.ts",
"act:check": "npx tsx src/act/check-conformance.ts",
"test:browser": "npm run build && npx playwright test",
"prepublishOnly": "npm run build",
"release": "scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AccessLint/core.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^26.1.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}