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
34
35
36
37
38
39
|
{
"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 ."
},
"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"
},
"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"
}
}
|