-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 909 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 909 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": {
"dev": "vite build --watch --mode development",
"prod": "vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check": "npm run format && npm run lint",
"fix": "npm run format:fix && npm run lint:fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^7.0.0",
"@types/chrome": "^0.1.39",
"@types/eslint": "^9.6.1",
"@types/firefox-webext-browser": "^143.0.0",
"archiver": "^7.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"glob": "^13.0.6",
"globals": "^17.4.0",
"html-minifier-next": "^6.1.1",
"jiti": "^2.6.1",
"lightningcss": "^1.32.0",
"pdfjs-dist": "^5.6.205",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vite-plugin-static-copy": "^4.0.1"
}
}