-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.93 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.93 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
{
"name": "embedder",
"version": "1.14.1",
"private": true,
"description": "Media host for quick embeds to sites like discord",
"keywords": [
"example",
"express",
"passport",
"sqlite"
],
"author": {
"name": "Wavering Ana",
"email": "ana@nekomimi.pet",
"url": "https://l.nekomimi.pet/projects"
},
"homepage": "https://github.com/WaveringAna/embedder",
"repository": {
"type": "git",
"url": "git://github.com/WaveringAna/embedder.git"
},
"license": "Unlicense",
"scripts": {
"start": "node ./dist/app-hono.js",
"start:old": "node ./dist/app.js",
"clean": "rimraf dist/",
"copy-files": "copyfiles -a -u 1 app/public/* app/views/* app/public/**/* app/views/**/* dist/",
"tsc": "tsc",
"build:client": "vite build",
"build:server": "npm run tsc && npm run copy-files",
"postinstall": "npm run build:server && npm run build:client",
"build": "npm run clean && npm run build:server && npm run build:client",
"dev": "ts-node-dev --respawn --watch ./app/views/*.ejs --transpile-only ./app/app-hono.ts",
"dev:old": "ts-node-dev --respawn --watch ./app/views/*.ejs --transpile-only ./app/app.ts",
"dev:client": "vite"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"@hono/node-server": "^1.19.5",
"@hono/zod-validator": "^0.7.4",
"better-sqlite3": "^12.4.1",
"bullmq": "^5.62.2",
"connect-sqlite3": "^0.9.13",
"cookie-parser": "~1.4.4",
"dotenv": "^8.6.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fluent-ffmpeg": "^2.1.2",
"hono": "^4.10.4",
"http-errors": "~1.6.3",
"ioredis": "^5.8.2",
"mkdirp": "^1.0.4",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"probe-image-size": "^7.2.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sqlite3": "^5.0.2",
"which": "^4.0.0",
"ws": "^8.17.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/connect-sqlite3": "^0.9.1",
"@types/cookie-parser": "^1.4.3",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/mkdirp": "^1.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^22.18.13",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/probe-image-size": "^7.2.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/which": "^3.0.1",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react": "^5.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.28.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"vite": "^7.1.12"
}
}