24 lines
764 B
JSON
24 lines
764 B
JSON
{
|
|
"name": "python-mqtt-client-template",
|
|
"version": "0.0.1",
|
|
"description": "A template that generates a Python MQTT client using MQTT.",
|
|
"scripts": {
|
|
"test:clean": "rimraf test/project/client.py",
|
|
"test:generate": "asyncapi generate fromTemplate ./test/fixtures/asyncapi_1.yaml ./ -o ./generated-code --force-write",
|
|
"test:start": "python test/project/test.py",
|
|
"test": "npm run test:clean && npm run test:generate && npm run test:start"
|
|
},
|
|
"generator": {
|
|
"apiVersion": "v3",
|
|
"generator": ">=2.0.0 <4.0.0",
|
|
"supportedProtocols": ["mqtt"]
|
|
},
|
|
"dependencies": {
|
|
"@asyncapi/generator-react-sdk": "^1.1.2",
|
|
"@asyncapi/modelina": "^5.10.1"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^5.0.0"
|
|
}
|
|
}
|