-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 907 Bytes
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
{
"name": "livetube",
"module": "index.ts",
"type": "module",
"private": true,
"author": {
"name": "Manuel Pinto",
"email": "manuel@pinto.dev",
"url": "https://manuel.pinto.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/P1N2O/livetube"
},
"bugs": {
"url": "https://github.com/P1N2O/livetube/issues"
},
"license": "MIT",
"scripts": {
"dev": "bun run --watch ./index.ts",
"build": "bun run script/build.ts",
"release": "bun run script/release.ts",
"taze": "bunx taze -frwu"
},
"dependencies": {
"@std/cache": "npm:@jsr/std__cache",
"@std/datetime": "npm:@jsr/std__datetime",
"@std/fmt": "npm:@jsr/std__fmt",
"hono": "^4.12.7",
"user-agents": "^1.1.669"
},
"devDependencies": {
"@types/bun": "latest",
"@types/user-agents": "^1.0.4"
},
"peerDependencies": {
"typescript": "^5"
}
}