-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@seriousme/opifex",
"version": "1.6.2",
"description": "MQTT client & server for Deno & NodeJS",
"type": "module",
"scripts": {
"test": "node --experimental-strip-types --test --test-skip-pattern='/^Deno/'",
"prebuild": "rm -rf dist",
"build": "npx -p typescript tsc --build",
"postbuild": "deno fmt",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "jq '( { name:.name , version:.version, license:.license } + .deno)' package.json > deno.json"
},
"keywords": [
"MQTT",
"typescript",
"mqtt-broker"
],
"bin": {
"mqtt": "dist/bin/mqtt.js",
"demoServer": "dist/bin/demoServer.js"
},
"exports": {
"./server": "./dist/server/mod.js",
"./client": "./dist/client/mod.js",
"./mqttPacket": "./dist/mqttPacket/mod.js",
"./utils": "./dist/utils/mod.js",
"./tcpClient": "./dist/node/tcpClient.js",
"./tcpServer": "./dist/node/tcpServer.js"
},
"deno": {
"exports": {
"./server": "./server/mod.ts",
"./client": "./client/mod.ts",
"./mqttPacket": "./mqttPacket/mod.ts",
"./utils": "./utils/mod.ts",
"./tcpClient": "./deno/tcpClient.ts",
"./tcpServer": "./deno/tcpServer.ts"
},
"exclude": [
"dist"
]
},
"author": "Hans Klunder",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seriousme/opifex.git"
},
"bugs": {
"url": "https://github.com/seriousme/opifex/issues"
},
"homepage": "https://github.com/seriousme/opifex#readme",
"devDependencies": {
"@types/node": "^22.10.0"
}
}