-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 968 Bytes
/
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
{
"name": "tweeet",
"version": "1.0.0",
"description": "Send out tweets from the comfort of your terminal",
"main": "build/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"build": "tsc"
},
"bin": {
"tweeet": "build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eronmmer/tweeet"
},
"author": "Erons",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eronmmer/tweeet/issues"
},
"homepage": "https://github.com/Eronmmer/tweeet#readme",
"keywords": [],
"dependencies": {
"axios": "^1.7.7",
"colorette": "^2.0.20",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"oauth-1.0a": "^2.2.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.5.4",
"@types/yargs": "^17.0.33",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
}
}