-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
33 lines (33 loc) · 1 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
{
"name": "@commaai/api",
"version": "3.1.3",
"main": "src/index.js",
"browser": "dist/index.js",
"types": "index.d.ts",
"repository": "https://github.com/commaai/comma-api.git",
"homepage": "https://api.comma.ai",
"license": "MIT",
"scripts": {
"generate": "openapi-typescript ./openapi.yaml --output ./index.d.ts",
"build": "babel --out-dir ./dist ./src",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"serve": "redocly preview-docs ./openapi.yaml",
"docs": "redocly build-docs --cdn ./openapi.yaml --output index.html"
},
"dependencies": {
"@babel/runtime": "^7.20.0",
"query-string": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@redocly/cli": "^1.0.0-beta.114",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"openapi-typescript": "^6.1.0"
}
}