-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.19 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "iptv-proxy",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/cbulock/iptv-proxy#readme",
"bugs": {
"url": "https://github.com/cbulock/iptv-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbulock/iptv-proxy.git"
},
"license": "MIT",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "npm run test:non-integration && npm run test:integration:parallel",
"test:non-integration": "mocha \"test/*.test.js\" \"test/unit/**/*.test.js\" --timeout 5000",
"test:integration": "mocha \"test/integration/**/*.test.js\" --timeout 10000",
"test:integration:parallel": "mocha \"test/integration/**/*.test.js\" --timeout 10000 --parallel --jobs 4",
"test:watch": "mocha \"test/**/*.test.js\" --watch",
"test:coverage": "c8 mocha \"test/**/*.test.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"serve": "node index.js",
"serve:dev": "node --watch --watch-preserve-output scripts/serve-dev.js",
"admin:dev": "npm --prefix admin run dev --",
"admin:build": "npm --prefix admin run build",
"dev": "concurrently \"npm:serve:dev\" \"npm:admin:dev\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"archiver": "^7.0.1",
"axios": "^1.18.0",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.9.0",
"chalk": "^5.4.1",
"escape-html": "^1.0.3",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"express-session": "^1.19.0",
"fast-xml-parser": "^5.8.0",
"joi": "^18.2.1",
"node-cron": "^4.2.1",
"node-ssdp": "^1.0.0",
"p-limit": "^6.2.0",
"vue": "^3.5.11",
"xml2js": "^0.6.2",
"yaml": "^2.8.3"
},
"overrides": {
"diff": ">=8.0.3",
"serialize-javascript": ">=7.0.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"chai": "^4.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.6.2",
"globals": "^17.0.0",
"mocha": "^11.7.5",
"nock": "^13.5.6",
"prettier": "^3.7.4",
"sinon": "^21.0.1"
}
}