mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
This is the latest stable release. Signed-off-by: Dan Cunningham <dan@digitaldan.com>
28 lines
654 B
JSON
28 lines
654 B
JSON
{
|
|
"name": "code-gen",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"clean": "tsc --clean",
|
|
"build": "tsc --build",
|
|
"build-clean": "tsc --build --clean",
|
|
"start": "ts-node src/app.ts",
|
|
"format": "prettier --write \"src/**/*.ts\""
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@matter/main": "0.17.4",
|
|
"handlebars": "^4.7.8"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"src/**/*",
|
|
"README.md"
|
|
]
|
|
}
|