-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.22 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.22 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
{
"name": "scrollwatch",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && vite build --config vite.config.content.ts",
"build:firefox": "vite build && vite build --config vite.config.content.ts && node -e \"const fs = require('fs'); const m = JSON.parse(fs.readFileSync('dist/manifest.json')); delete m.background.service_worker; m.background.scripts = ['background.js']; fs.writeFileSync('dist/manifest.json', JSON.stringify(m, null, 2))\"",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "node scripts/e2e-test.js"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "^0.12.4",
"@vitejs/plugin-react": "^5.1.3",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"puppeteer": "^24.37.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}