-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
61
62
63
{
"name": "yearsprogress",
"version": "1.1.1",
"description": "Meta's Threads bot that posts current year progress bar updates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yearsprogress": "dist/index.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/s1mpson/yearsprogress.git"
},
"files": [
"dist"
],
"keywords": [
"meta",
"instagram",
"threads",
"bot",
"threads-bot",
"threads-api",
"threads-client"
],
"author": {
"name": "Max Mykhalchuk",
"email": "s1mpsondevs@gmail.com",
"url": "https://s1mpson.dev/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/s1mpson/yearsprogress/issues"
},
"homepage": "https://github.com/s1mpson/yearsprogress#readme",
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"boxen": "^5.1.2",
"commander": "^11.0.0",
"cron": "^2.3.1",
"dayjs": "^1.11.9",
"threads-api": "^1.4.0"
}
}