forked from iptv-org/database
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "@iptv-org/database",
"scripts": {
"act:check": "act pull_request -W .github/workflows/check.yml",
"act:update": "act workflow_dispatch -W .github/workflows/update.yml",
"act:deploy": "act push -W .github/workflows/deploy.yml",
"db:validate": "tsx scripts/commands/db/validate.ts",
"db:export": "tsx scripts/commands/db/export.ts",
"db:update": "tsx scripts/commands/db/update.ts",
"lint": "npx eslint \"{scripts,tests}/**/*.{ts,js}\"",
"test": "npx vitest run",
"prepare": "husky"
},
"private": true,
"license": "UNLICENSED",
"jest": {
"testMatch": [
"<rootDir>/tests/commands/**/*.test.(js|ts)"
]
},
"dependencies": {
"@eslint/js": "^9.39.1",
"@freearhey/core": "^0.15.2",
"@freearhey/storage-js": "^0.2.0",
"@iptv-org/sdk": "^1.1.0",
"@joi/date": "^2.1.1",
"@json2csv/formatters": "^7.0.6",
"@json2csv/node": "^7.0.6",
"@json2csv/transforms": "^7.0.6",
"@octokit/core": "^7.0.3",
"@octokit/plugin-paginate-rest": "^13.1.1",
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@swc/core": "^1.15.2",
"@types/fs-extra": "^11.0.4",
"@types/probe-image-size": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"async-es": "^3.2.6",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"cross-env": "^10.0.0",
"csvtojson": "^2.0.10",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"fs-extra": "^11.2.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"joi": "^17.13.3",
"probe-image-size": "^7.2.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^4.0.9"
}
}