-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "speak-o",
"version": "1.0.0",
"private": true,
"description": "Open-source BYOK article reader for Chrome",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"postinstall": "wxt prepare",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:accessibility": "vitest run tests/accessibility",
"test:e2e": "npm run build && npm run test:e2e:run",
"test:e2e:run": "playwright test",
"notices": "node scripts/generate-notices.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit:zip": "node scripts/audit-zip.mjs",
"verify": "npm run notices && npm run format:check && npm run typecheck && npm test && npm run build && npm run zip && npm run audit:zip"
},
"dependencies": {
"@mozilla/readability": "0.6.0",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@playwright/test": "1.61.0",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.6",
"@types/chrome": "0.2.7",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "4.7.0",
"@wxt-dev/module-react": "1.2.2",
"axe-core": "4.13.0",
"fflate": "0.8.3",
"jsdom": "29.1.1",
"prettier": "3.9.6",
"typescript": "7.0.2",
"vite": "6.4.3",
"vitest": "4.1.11",
"wxt": "0.21.4"
},
"engines": {
"node": ">=22"
}
}