diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 39 |
1 files changed, 33 insertions, 6 deletions
diff --git a/package.json b/package.json index 4568912..d77e5fd 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,39 @@ { - "private": true, + "name": "airmx", + "version": "0.0.1", + "description": "Control AIRMX Pro with JavaScript.", + "type": "module", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "files": [ + "dist" + ], "scripts": { + "build": "tsc", + "test": "jest", + "test:watch": "jest --watch --verbose", "format": "prettier --write --cache ." }, - "devDependencies": { - "prettier": "3.6.2" + "repository": { + "type": "git", + "url": "git+https://github.com/openairmx/airmx.git" + }, + "keywords": [ + "airmx", + "mqtt" + ], + "author": "Li Zhineng <[email protected]>", + "license": "MIT", + "bugs": { + "url": "https://github.com/openairmx/airmx/issues" }, - "workspaces": [ - "packages/airmx" - ] + "homepage": "https://github.com/openairmx/airmx#readme", + "peerDependencies": { + "mqtt": "^5.0.0" + }, + "devDependencies": { + "@types/jest": "^29.5.14", + "mqtt": "^5.0.0", + "ts-jest": "^29.2.5" + } } |
