-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@boscop/assistant-rgaa",
"version": "2.1.2",
"description": "Assistant RGAA",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"browserslist": [
"chrome >= 121",
"ff >= 125"
],
"scripts": {
"start": "NODE_ENV=development rspack build --watch",
"serve": "rspack serve",
"build": "rspack build",
"build-extension": "npm run build && web-ext build",
"sign-extension": "npm run build && web-ext sign",
"lint:code": "biome check && prettier --check **/*.{html,md,yml}",
"lint:extension": "web-ext lint",
"lint": "npm run lint:code && npm run lint:extension",
"format": "biome check --write --unsafe && prettier --write **/*.{html,md,yml}",
"test:unit": "jest",
"test:e2e": "playwright test",
"test:e2e-ui": "playwright test --ui",
"test": "npm run test:unit && npm run test:e2e",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.51.0",
"@rspack/cli": "^1.2.8",
"@types/node": "^22.13.10",
"@types/preact-custom-element": "^4.0.4",
"@types/react-dom": "^18.3.5",
"@types/wcag-contrast": "^3.0.3",
"@types/webextension-polyfill": "^0.12.3",
"color-string": "^2.0.1",
"commander": "^13.1.0",
"css-loader": "^7.1.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"request": "^2.88.2",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"wcag-contrast": "^3.0.0",
"web-ext": "^8.4.0",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"@reduxjs/toolkit": "^2.6.1",
"@rspack/core": "^1.2.8",
"classnames": "^2.5.1",
"debounce": "^2.2.0",
"deepmerge": "^4.3.1",
"lucide-react": "^0.482.0",
"preact": "^10.26.4",
"preact-custom-element": "^4.3.0",
"react-intl": "^7.1.6",
"react-redux": "^9.2.0",
"redux": "^5.0.1"
},
"volta": {
"node": "20.0.0"
}
}