-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "yarn-threads-cli",
"version": "0.1.3",
"description": "Fast CLI for Threads — read posts, browse profiles, search users from the terminal",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yarn-threads": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeizzon/yarn-threads-cli.git"
},
"keywords": [
"threads",
"cli",
"meta",
"instagram",
"social-media",
"terminal"
],
"author": "Jeizzon Mendes <hello@jeizzon.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeizzon/yarn-threads-cli/issues"
},
"homepage": "https://github.com/jeizzon/yarn-threads-cli#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@steipete/sweet-cookie": "^0.1.0",
"commander": "^12.0.0",
"json5": "^2.2.3",
"kleur": "^4.1.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}