-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.83 KB
/
package.json
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
87
88
89
90
91
{
"name": "apple-notes-readwise",
"productName": "Readwise to Apple Notes",
"version": "0.1.13",
"description": "Export Readwise highlights to Apple Notes",
"main": ".vite/build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Scarvy/apple-notes-readwise"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make:arm64": "electron-forge make -- --arch=arm64",
"make:x64": "electron-forge make -- --arch=x64",
"make:all": "npm run -- make='arm64,x64'",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"clean": "rm -rf .vite && rm -rf out"
},
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-dmg": "^7.6.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-fuses": "^7.5.0",
"@electron-forge/plugin-vite": "^7.5.0",
"@electron-forge/publisher-github": "^7.5.0",
"@electron/fuses": "^1.8.0",
"@types/node": "^22.8.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.20",
"electron": "33.0.2",
"electron-rebuild": "^3.2.9",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "~4.5.4",
"vite": "^5.4.10"
},
"keywords": [
"readwise",
"apple",
"notes"
],
"author": {
"name": "Scott Carvalho",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.7",
"@types/better-sqlite3": "^7.6.12",
"@types/lodash": "^4.17.13",
"@types/markdown-it": "^14.1.2",
"@vitejs/plugin-react": "^4.3.3",
"@zip.js/zip.js": "^2.7.53",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"electron-store": "^10.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.454.0",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^3.0.0",
"plain-tag": "^0.1.3",
"protobufjs": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"static-params": "^0.4.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"update-electron-app": "^3.0.0",
"vite-tsconfig-paths": "^5.0.1"
}
}