-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "shotback-extension",
"version": "0.1.0",
"description": "Chrome extension for full-page screenshot annotation with local share links",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"gen:icons": "node scripts/generate-icons.mjs",
"check": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@fontsource-variable/manrope": "^5.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@playwright/test": "^1.61.1",
"@types/chrome": "^0.2.0",
"@types/node": "^22.10.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^6.0.0",
"globals": "^16.0.0",
"postcss": "^8.5.6",
"prettier": "^3.8.4",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}