-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.3 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
{
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "NODE_OPTIONS='--max-old-space-size=8192' nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"content:blog": "find /Users/ejfox/Library/Mobile\\ Documents/iCloud~md~obsidian/Documents/ejfox/ -type f -name '*.md' ! -path '*/drafts/*' -exec rsync -avz --relative {} ./content/blog/ \\; && echo 'Synced files:' && find /Users/ejfox/Library/Mobile\\ Documents/iCloud~md~obsidian/Documents/ejfox/ -type f -name '*.md' ! -path '*/drafts/*' -exec rsync -avz --relative {} ./content/blog/ --dry-run --list-only \\; && node /scripts/import.mjs --drafts",
"content:reading": "rsync -avz --delete --exclude='/drafts/' --include='*.md' --exclude='*' /Users/ejfox/Library/Mobile\\ Documents/iCloud~md~obsidian/Documents/ejfox/reading/ ./content/reading/",
"content:all": "yarn run content:blog && yarn run content:reading && git add \\*.md && git commit -m 'Update content' && git push"
},
"devDependencies": {
"@nuxt/devtools": "^1.3.9",
"@nuxt/image": "^1.7.0",
"@types/node": "^22.2.0",
"@unlok-co/nuxt-stripe": "^3.0.0",
"nuxt": "^3.12.4"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.25.2",
"@ejfox/gpt-browser": "^2.0.0",
"@nuxt/content": "^2.13.2",
"@nuxt/ui": "^2.18.4",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/supabase": "^1.3.5",
"@turf/turf": "^7.1.0",
"@vueuse/motion": "^2.2.3",
"@vueuse/nuxt": "^10.11.1",
"@vueuse/router": "^10.11.1",
"animejs": "^3.2.2",
"are.na": "^0.1.5",
"bottleneck": "^2.19.5",
"cloudinary": "^2.4.0",
"crypto-js": "^4.2.0",
"d3": "^7.9.0",
"d3-voronoi": "^1.1.4",
"date-fns": "^3.6.0",
"eslint-config-prettier": "^9.1.0",
"front-matter": "^4.0.2",
"inquirer": "^10.1.8",
"js-md5": "^0.8.3",
"nuxt-gtag": "^2.1.0",
"rehype-external-links": "^3.0.0",
"remark-emoji": "^5.0.1",
"remark-external-links": "^9.0.1",
"remark-gfm": "^4.0.0",
"remark-mermaidjs": "^6.0.0",
"remark-reading-time": "^2.0.1",
"remark-unwrap-images": "^4.0.0",
"remark-wiki-link": "^2.0.1",
"rss": "^1.2.2",
"unicode-string": "^2.1.0",
"unicodechar-string": "^1.0.0",
"uuid": "^10.0.0",
"vue": "^3.4.37",
"vue-virtual-scroller": "^2.0.0-beta.8"
}
}