-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "notefix",
"private": true,
"version": "0.2.0",
"description": "A lightweight, local-first sticky-note desktop app built with Tauri.",
"license": "MIT",
"author": "noix.dev",
"homepage": "https://github.com/NoiXdev/notefix",
"repository": {
"type": "git",
"url": "https://github.com/NoiXdev/notefix.git"
},
"bugs": {
"url": "https://github.com/NoiXdev/notefix/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"changelog": "conventional-changelog -n ./.github/changelog-preset.mjs -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.1",
"@tailwindcss/vite": "^4.3.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-deep-link": "^2.4.9",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tiptap/extension-code-block-lowlight": "^3.27.1",
"@tiptap/extension-image": "^3.27.1",
"@tiptap/extension-placeholder": "^3.27.1",
"@tiptap/extension-task-item": "^3.27.1",
"@tiptap/extension-task-list": "^3.27.1",
"@tiptap/extension-underline": "^3.27.1",
"@tiptap/pm": "^3.27.1",
"@tiptap/react": "^3.27.1",
"@tiptap/starter-kit": "^3.27.1",
"emoji-picker-react": "^4.19.1",
"highlight.js": "^11.11.1",
"html2canvas-pro": "^2.2.0",
"i18next": "^26.3.2",
"jspdf": "^4.2.1",
"lowlight": "^3.3.0",
"marked": "^18.0.5",
"react": "^19.1.0",
"react-confetti": "^6.4.0",
"react-dom": "^19.1.0",
"react-grid-layout": "^1.5.3",
"react-i18next": "^17.0.8",
"react-select": "^5.10.2",
"react-simple-code-editor": "^0.14.1",
"tailwindcss": "^4.3.1",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-grid-layout": "^1.3.6",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^4.7.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"jsdom": "^29.1.1",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.9"
}
}