-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "social-picker-api",
"version": "3.2.0",
"description": "Extract media from various posting platforms like Twitter, Reddit, Pixiv, Youtube, Tiktok, Osnova and many others",
"main": "dist/main.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx watch src/main.ts --no-cache",
"lint": "eslint . --ext .ts,.js,.cjs,.mjs --fix --ignore-path .gitignore",
"compile": "tsc --project tsconfig.json",
"production": "pm2 start config/pm2.production.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serguun42/social-picker-api.git"
},
"keywords": [
"parser",
"ffmpeg",
"twitter",
"instagram",
"pixiv",
"ugoira",
"reddit",
"youtube-dl",
"yt-dlp",
"osnova",
"dtf",
"tumblr",
"joyreactor",
"coub"
],
"author": "serguun42",
"license": "BSL-1.0 License",
"dependencies": {
"@serguun42/tumblr.js": "4.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.11.17",
"jszip": "^3.10.1",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.12",
"pm2": "^5.3.1",
"socks-proxy-agent": "^8.0.2",
"typescript": "^5.3.3",
"yt-dlp-wrap": "^2.3.12"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsx": "^4.7.1"
}
}