-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.38 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.38 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vumbnail",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.23.0",
"description": "",
"author": "@ThatGuySam",
"license": "ISC",
"homepage": "https://github.com/ThatGuySam/vumbnail#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ThatGuySam/vumbnail.git"
},
"bugs": {
"url": "https://github.com/ThatGuySam/vumbnail/issues"
},
"main": "subreddit.js",
"engines": {
"node": "20.x"
},
"scripts": {
"test": "vitest",
"test-prebuild": "vitest ./test/prebuild/*",
"test-postbuild": "vitest ./test/postbuild/*",
"preinstall": "npx only-allow pnpm",
"type-check": "tsc",
"build": "tsx ./build.ts && astro build",
"dev": "astro dev",
"start": "astro dev",
"preview": "astro preview",
"build-stats": "cross-env ANALYZE=true npm run build",
"build-prod": "run-s build",
"vercel-dev": "astro dev",
"vercel-build": "run-s test-prebuild build test-postbuild"
},
"dependencies": {
"@astrojs/vercel": "^7.5.4",
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@sentry/node": "^7.113.0",
"@sentry/profiling-node": "^7.113.0",
"@vercel/node": "^3.0.28",
"axios": "^1.6.8",
"clipboard": "^2.0.11",
"dotenv": "^16.4.5",
"execa": "^6.1.0",
"fast-glob": "^3.3.2",
"fbvideos": "^1.0.2",
"ffmpeg-static": "^5.2.0",
"fs-extra": "^10.1.0",
"googleapis": "^47.0.0",
"got": "^10.7.0",
"gray-matter": "^4.0.3",
"js-video-url-parser": "^0.5.1",
"just-debounce": "^1.1.0",
"just-filter-object": "^3.2.0",
"just-has": "^2.3.0",
"just-map-values": "^3.2.0",
"localforage": "^1.10.0",
"markdown-it": "^12.3.2",
"micro-redirect": "^1.0.2",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sharp": "^0.30.7",
"shiki": "^0.10.1",
"tsimp": "^2.0.11",
"type-fest": "^4.18.1",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"ytdl-core": "^4.11.5",
"zod": "^3.23.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vue": "^4.1.0",
"@types/eslint": "~8.56.10",
"@types/fs-extra": "~11.0.4",
"@types/markdown-it": "~13.0.8",
"@types/react": "~17.0.80",
"@types/react-dom": "~17.0.25",
"@types/sharp": "~0.30.5",
"@types/tailwindcss": "~3.0.11",
"astro": "^4.7.1",
"astro-eslint-parser": "^0.17.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.2.0",
"eslint-plugin-astro": "^0.34.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.9.1",
"vitest": "^1.6.0",
"vue": "^3.4.26"
},
"pnpm": {
"overrides": {
"@vercel/node>ts-node": "10.9.1",
"@vercel/node>typescript": "^5.4.5"
},
"onlyBuiltDependencies": [
"@sentry/profiling-node",
"esbuild",
"ffmpeg-static",
"sharp",
"unrs-resolver"
]
},
"volta": {
"node": "20.19.5"
}
}