-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1003 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1003 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
40
41
42
43
44
45
46
47
{
"name": "tikio",
"version": "1.0.0",
"description": "TikTok downloader application ultra fast",
"type": "module",
"scripts": {
"dev": "concurrently \"bun backend/server.ts\" \"astro dev\"",
"build": "astro build",
"clean": "rm -rf dist node_modules/.astro",
"type-check": "astro check"
},
"dependencies": {
"@astrojs/node": "^9.4.3",
"@astrojs/tailwind": "^6.0.2",
"astro": "^5.13.9",
"bun": "^1.2.22",
"dotenv": "^17.2.2",
"hono": "^4.6.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.0"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"concurrently": "^9.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"keywords": [
"tiktok",
"downloader",
"astro",
"hono",
"bun",
"typescript"
],
"author": "bang_syaii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lt-syaii/tikio"
}
}