-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 849 Bytes
/
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
{
"name": "vlc-media-db-to-m3u",
"version": "0.0.1",
"description": "Utilities to convert exported VLC databases to M3U playlists",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"app": "npx ts-node src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanTalash/vlc-media-db-to-m3u.git"
},
"keywords": [
"VLC",
"M3U",
"Playlist",
"Export",
"Media",
"Database"
],
"author": "DanTalash",
"license": "ISC",
"bugs": {
"url": "https://github.com/DanTalash/vlc-media-db-to-m3u/issues"
},
"homepage": "https://github.com/DanTalash/vlc-media-db-to-m3u#readme",
"devDependencies": {
},
"dependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20"
}
}