-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"name": "jsa-browser-ext",
"version": "0.1.0",
"description": "JSA - Job Search Assistant browser extension",
"type": "module",
"scripts": {
"dev": "vite",
"dev:chrome": "vite --mode chrome",
"dev:firefox": "VITE_BROWSER=firefox vite --mode firefox",
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "vite build --mode production && node scripts/fix-chrome-build.js",
"build:firefox": "VITE_BROWSER=firefox vite build --mode production && node scripts/fix-firefox-build.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx,css,html}'"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@playwright/test": "^1.48.0",
"@types/chrome": "^0.0.280",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.0.0",
"jsdom": "^28.0.0",
"postcss": "^8.4.45",
"prettier": "^3.3.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
},
"dependencies": {
"lit": "^3.2.0",
"webextension-polyfill": "^0.12.0"
}
}