-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "after-thought",
"version": "1.0.0",
"type": "module",
"description": "A local-first desktop app that turns screenshots into searchable records and actionable tasks.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"keywords": [
"tauri",
"react",
"rust",
"sqlite",
"screenshots",
"productivity",
"openai"
],
"author": "Afterthought contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/deepunyk/afterthought.git"
},
"bugs": {
"url": "https://github.com/deepunyk/afterthought/issues"
},
"homepage": "https://github.com/deepunyk/afterthought#readme",
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.10.10",
"postcss": "^8.5.8",
"rollup": "^4.60.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.2"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-global-shortcut": "^2.0.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-shell": "^2.3.5",
"react": "^19.2.4",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.4"
}
}