-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "scouting-schedule-generator",
"version": "0.4.0",
"description": "An FRC scouting schedule generator",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"keywords": [
"frc",
"robotics",
"scouting",
"FIRST",
"analysis",
"competition",
"robots"
],
"bin": "dist/cli.cjs",
"repository": "https://github.com/lobstahbots/Scouting-Schedule-Generator.git",
"author": "FRC 246 Lobstah Bots <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commander-js/extra-typings": "^12.0.1",
"@types/import-local": "^3",
"@types/node": "^20.12.7",
"import-local": "^3.1.0",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --config webpack-dev.config.js"
},
"dependencies": {
"axios": "^1.6.8",
"commander": "^12.0.0",
"exceljs": "^4.4.0"
},
"packageManager": "[email protected]"
}