-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 924 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
{
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"dev": "vite build --watch --mode development",
"check": "npm run format && npm run lint",
"fix": "npm run format:fix && npm run lint:fix",
"prod": "npm run fix && vite build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^8.0.0",
"@types/chrome": "^0.2.6",
"@types/eslint": "^9.6.1",
"@types/firefox-webext-browser": "^143.0.0",
"archiver": "^8.0.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"glob": "^13.0.6",
"globals": "^17.11.0",
"html-minifier-next": "^8.1.0",
"jiti": "^2.7.0",
"lightningcss": "^1.33.0",
"pdfjs-dist": "^6.2.108",
"prettier": "^3.9.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2",
"vite-plugin-static-copy": "^4.1.1"
}
}