-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"dependencies": {
"chrome-types": "^0.1.349"
},
"scripts": {
"lint:locales": "node tools/validateLocalizationLengths.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"build": "node tools/buildExtension.mjs",
"prezip": "npm run build && node -e \"require('node:fs').mkdirSync('build/Release',{recursive:true})\"",
"zip": "node -e \"const {version}=require('./manifest.json'); require('child_process').execFileSync('npx',['bestzip',`../build/Release/eq-toolkit_v${version}_unpacked.zip`,'*'],{cwd:'dist',stdio:'inherit',shell:true})\""
},
"devDependencies": {
"@types/node": "^26.1.0",
"bestzip": "^2.2.1",
"playwright": "^1.62.0",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.9"
}
}