2023-04-08 05:20:27 +00:00
|
|
|
{
|
|
|
|
|
"name": "vim-tabby",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"description": "Tabby client for vim.",
|
|
|
|
|
"main": "./dist/tabby.js",
|
|
|
|
|
"scripts": {
|
2023-04-13 13:57:14 +00:00
|
|
|
"postinstall": "yarn openapi-codegen",
|
|
|
|
|
"openapi-codegen": "openapi --input ../../../docs/openapi.json --output ./src/generated --client axios --name Tabby --indent 2",
|
2023-04-09 13:12:18 +00:00
|
|
|
"dev": "webpack --watch",
|
2023-04-08 05:20:27 +00:00
|
|
|
"build": "webpack --mode=production"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-04-13 13:57:14 +00:00
|
|
|
"openapi-typescript-codegen": "^0.24.0",
|
2023-04-08 05:20:27 +00:00
|
|
|
"ts-loader": "^9.4.2",
|
|
|
|
|
"typescript": "^5.0.3",
|
|
|
|
|
"webpack": "^5.77.0",
|
|
|
|
|
"webpack-cli": "^5.0.1"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-04-13 13:57:14 +00:00
|
|
|
"axios": "^1.3.4",
|
|
|
|
|
"form-data": "^4.0.0"
|
2023-04-08 05:20:27 +00:00
|
|
|
}
|
|
|
|
|
}
|