-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.08 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
{
"name": "@robotevents/client",
"version": "1.1.2",
"description": "A Robot Events API client.",
"keywords": [
"Robot Events",
"API",
"client",
"VEX",
"robotics",
"competition"
],
"homepage": "https://github.com/jtkiesel/robot-events#readme",
"bugs": {
"url": "https://github.com/jtkiesel/robot-events/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jtkiesel/robot-events.git"
},
"license": "MIT",
"author": {
"name": "Jordan Kiesel",
"url": "https://github.com/jtkiesel"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./v1": "./dist/v1/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -fr dist",
"prepublishOnly": "yarn build"
},
"dependencies": {
"axios": "^1.4.0",
"axios-rate-limit": "^1.3.0"
},
"devDependencies": {
"@types/node": "^20.2.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}