forked from HerbertHe/iptv-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.62 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
{
"name": "iptv-sources",
"version": "1.6.1",
"main": "index.js",
"repository": "[email protected]:HerbertHe/iptv-sources.git",
"author": "HerbertHe <[email protected]>",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"dev": "cross-env NODE_ENV=development tsup --watch",
"build": "tsup",
"m3u": "node ./dist/index.js",
"serve": "node ./dist/serve.js",
"serve:dev": "nodemon ./dist/serve.js",
"matrix": "node ./dist/matrix.js",
"release": "node ./scripts/release.js",
"docker:build": "docker buildx build -t herberthe0229/iptv-sources:latest --platform=linux/arm64,linux/amd64,linux/arm/v8,linux/arm/v7 . --push",
"docker:build:dev": "docker buildx build -t herberthe0229/iptv-sources:dev --platform=linux/arm64,linux/amd64,linux/arm/v8,linux/arm/v7 . --push",
"docker:build:local": "docker buildx build -t herberthe0229/iptv-sources:dev --platform=linux/arm64,linux/amd64,linux/arm/v8,linux/arm/v7 .",
"push": "yarn release && git push && yarn docker:build"
},
"devDependencies": {
"@rollup/wasm-node": "^4.13.0",
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.30",
"@types/opencc-js": "^1.0.3",
"cross-env": "^7.0.3",
"nodemon": "^3.1.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"dotenv": "^16.4.5",
"koa": "^2.15.2",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"markdown-it": "^14.1.0",
"opencc-js": "^1.0.5"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node"
}
}