-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "polypost",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 5173",
"build": "tsc -b && vite build",
"build:extension": "tsc -b && vite build --config vite.extension.config.ts",
"package:extension": "npm run build:extension && node scripts/package-extension.mjs",
"generate:icons": "node scripts/generate-pwa-icons.mjs",
"preview": "vite preview --host 127.0.0.1",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tiptap/extension-character-count": "^2.27.1",
"@tiptap/extension-link": "^2.27.1",
"@tiptap/extension-placeholder": "^2.27.1",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/react": "^2.27.1",
"@tiptap/starter-kit": "^2.27.1",
"lucide-react": "^0.475.0",
"mammoth": "^1.12.0",
"marked": "^18.0.5",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^6.0.2",
"jsdom": "^26.0.0",
"typescript": "^5.7.3",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.8"
},
"overrides": {
"minimatch@5.1.9": {
"brace-expansion": "2.1.4"
},
"minimatch@10.2.5": {
"brace-expansion": "5.0.9"
},
"fast-uri": "4.1.2",
"linkify-it": "6.1.0",
"sharp@0.33.5": "0.35.3"
}
}