-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "dl-mate",
"version": "1.2.0",
"description": "A robust Node.js library for downloading content from various social media platforms including TikTok, Instagram, YouTube, and more. Built with reliability, caching, and error handling in mind.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "npm run clean && node -r esbuild-register esbuild.config.ts && npm run types",
"types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"prepare": "npm run build",
"dev": "node -r esbuild-register src/example.ts",
"example": "ts-node src/example.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf dist",
"test": "jest",
"coverage": "jest --coverage",
"coverage:html": "jest --coverage --coverageReporters=html"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yaasiin-ayeva/dl-mate.git"
},
"author": "yaasiin-ayeva",
"license": "ISC",
"bugs": {
"url": "https://github.com/yaasiin-ayeva/dl-mate/issues"
},
"homepage": "https://github.com/yaasiin-ayeva/dl-mate#readme",
"dependencies": {
"axios": "^1.3.0",
"axios-retry": "^3.5.0",
"cheerio": "^1.0.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"esbuild-register": "^3.6.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}