forked from HerbertHe/iptv-sources
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "iptv-sources",
"version": "1.4.0",
"main": "index.js",
"repository": "[email protected]:HerbertHe/iptv-sources.git",
"author": "HerbertHe <[email protected]>",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"m3u": "node ./dist/index.js",
"serve": "node ./dist/serve.js",
"docker:build": "docker buildx build -t herberthe0229/iptv-sources:latest --platform=linux/arm64,linux/amd64 . --push",
"docker:build:dev": "docker buildx build -t herberthe0229/iptv-sources:dev --platform=linux/arm64,linux/amd64 . --push",
"docker:build:local": "docker buildx build -t herberthe0229/iptv-sources:dev --platform=linux/arm64,linux/amd64 .",
"push": "git push && yarn docker:build"
},
"devDependencies": {
"@rollup/wasm-node": "^4.9.1",
"@types/koa": "^2.13.12",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.10.5",
"@types/opencc-js": "^1.0.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"koa": "^2.14.2",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"markdown-it": "^14.0.0",
"opencc-js": "^1.0.5"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node"
}
}