-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"dependencies": {
"@fastify/static": "^7.0.4",
"@iptv/xmltv": "^1.0.1",
"@tunarr/playlist": "^1.1.0",
"fastify": "^4.28.1",
"ip": "^2.0.1",
"moment": "^2.30.1",
"node-ssdp": "^1.0.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/node": "^20.14.12",
"@types/node-ssdp": "^4.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"name": "piparr",
"version": "0.0.1",
"description": "M3U/IPTV Proxy Server",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-server": "tsc server/src/index.ts --outDir ./dist --esModuleInterop",
"build-client": "webpack",
"build": "npm run build-server && npm run build-client",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domkalan/piparr.git"
},
"keywords": [
"iptv",
"m3u",
"m3u8",
"proxy"
],
"author": "domkalan",
"license": "Zlib",
"bugs": {
"url": "https://github.com/domkalan/piparr/issues"
},
"homepage": "https://github.com/domkalan/piparr#readme"
}