-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@usememos/web-clipper",
"version": "0.3.0",
"private": true,
"description": "Browser extension for clipping web content to Memos.",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "vite",
"validate:locales": "node scripts/validate-locales.mjs",
"build": "pnpm validate:locales && tsc --noEmit && vite build",
"package": "pnpm build && node scripts/package.mjs all",
"package:chrome": "pnpm build && node scripts/package.mjs chrome",
"package:edge": "pnpm build && node scripts/package.mjs edge",
"package:firefox": "pnpm build && node scripts/package.mjs firefox",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check ."
},
"packageManager": "pnpm@11.10.0",
"type": "module",
"dependencies": {
"@base-ui/react": "^1.6.0",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.22.0",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"semver": "^7.8.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@crxjs/vite-plugin": "^2.7.0",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.2.0",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@types/turndown": "^5.0.6",
"@types/webextension-polyfill": "^0.12.5",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"jsdom": "^29.1.1",
"shadcn": "^4.12.0",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9",
"web-ext": "^10.5.0"
}
}