-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.14 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": "popshot",
"version": "0.3.2",
"description": "Capture, annotate, and send screenshot feedback directly to Fizzy",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"release": "vitest run && tsc && vite build && cd dist && zip -r ../popshot.zip . && cd .. && echo '\nRelease built: popshot.zip'"
},
"dependencies": {
"fabric": "^6.9.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.0.287",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/spark-md5": "^3.0.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^28.1.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^4.0.18"
}
}