-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.05 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "bbdata",
"version": "0.10.0",
"description": "Baseball data CLI for querying, scouting reports, and analytics — built for humans and AI agents",
"type": "module",
"bin": {
"bbdata": "dist/bin/bbdata.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist",
"src/templates/**/*.hbs",
"src/cache/schema.sql"
],
"scripts": {
"build": "tsup",
"dev": "tsx bin/bbdata.ts",
"start": "node dist/bin/bbdata.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ bin/ test/",
"lint:partials": "tsx scripts/check-partials.ts",
"typecheck": "tsc --noEmit",
"viz:fixtures": "tsx scripts/render-fixtures.ts",
"prepublishOnly": "npm run build && npm run lint && npm run lint:partials && npm run typecheck && npm test"
},
"keywords": [
"baseball",
"analytics",
"statcast",
"fangraphs",
"scouting",
"mlb",
"cli",
"ai"
],
"author": "Aaron Reales",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/areales/bbdata.git"
},
"bugs": {
"url": "https://github.com/areales/bbdata/issues"
},
"homepage": "https://github.com/areales/bbdata#readme",
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"handlebars": "^4.7.8",
"pdfkit": "^0.18.0",
"sql.js": "^1.12.0",
"svg-to-pdfkit": "^0.1.8",
"vega": "^6.2.0",
"vega-lite": "^6.4.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.13.0",
"@types/pdfkit": "^0.17.5",
"@types/svg-to-pdfkit": "^0.1.4",
"eslint": "^10.2.1",
"tsup": "^8.4.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.58.2",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}