-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "cowsay",
"version": "1.0.0",
"description": "A simple cowsay application",
"repository": {
"type": "git",
"url": "https://github.com/meowso/cowsay"
},
"scripts": {
"clean": "rm -rf dist/**.*",
"compile": "tsc",
"start": "npm run clean && npm run compile && npm run say && npm run lolcat && npm run convert && npm run tweet ",
"convert": "node dist/convert.js",
"say": "node dist/say.js",
"lolcat": "node dist/lolcat.js > ./dist/lolcat.ansi",
"tweet": "node dist/tweet.js",
"local": "bash tweet_local.sh"
},
"keywords": [
"cowsay",
"lolcatjs",
"twitter-api-v2",
"tweet",
"nodejs",
"typescript"
],
"author": {
"name": "Bruno Palma",
"email": "cat@cowsay.co",
"url": "http://about.me/bruno_vop"
},
"license": "MIT",
"dependencies": {
"ansi-to-html": "^0.7.2",
"cowsay": "^1.6.0",
"dotenv": "^16.4.5",
"lolcatjs": "^2.4.3",
"node-html-to-image": "^5.0.0",
"node-pty": "^1.0.0",
"twitter-api-v2": "^1.17.2",
"typescript": "^5.6.2",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@types/lolcatjs": "^2.4.1"
}
}