-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "cricket-data",
"version": "1.0.7",
"description": "Get Live Cricket Score Update on Terminal and CMD.",
"main": "./dist/cli.js",
"scripts": {
"dev": "ts-node src/cli.ts score",
"score": "ts-node src/cli.ts score",
"score:details": "ts-node src/cli.ts score --details",
"build": "tsc",
"start": "node dist/cli.js score"
},
"publishConfig": {
"provenance": true
},
"bin": {
"cricket": "bin/index.mjs"
},
"keywords": [
"cricket",
"cricket api",
"score",
"live",
"match",
"live score",
"cricket score",
"cricket cli"
],
"author": "Santhosh Veer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sanwebinfo/cricket-cli"
},
"bugs": {
"url": "https://github.com/sanwebinfo/cricket-cli/issues"
},
"homepage": "https://github.com/sanwebinfo/cricket-cli",
"dependencies": {
"axios": "^1.7.9",
"yaml": "^2.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"files": [
"dist/**/*",
"bin/**/*"
]
}