-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@seriousme/opifex",
"version": "1.8.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",
"format": "deno fmt",
"preversion": "npm run test",
"postversion": "jq '( { name:.name , version:.version, license:.license } + .deno)' package.json > deno.json",
"postpostversion": "deno install"
},
"keywords": [
"MQTT",
"typescript",
"mqtt-broker"
],
"bin": {
"mqtt": "dist/bin/mqtt.js",
"demoServer": "dist/bin/demoServer.js"
},
"files": [
"package.json",
"README.md",
"LICENSE.txt",
"**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"exports": {
"./tcpClient": "./dist/node/tcpClient.js",
"./tcpServer": "./dist/node/tcpServer.js",
"./server": "./dist/server/mod.js",
"./client": "./dist/client/mod.js",
"./persistence": "./dist/persistence/persistence.js",
"./mqttConn": "./dist/mqttConn/mqttConn.js",
"./mqttPacket": "./dist/mqttPacket/mod.js",
"./utils": "./dist/utils/mod.js"
},
"deno": {
"exports": {
"./tcpClient": "./deno/tcpClient.ts",
"./tcpServer": "./deno/tcpServer.ts",
"./server": "./server/mod.ts",
"./client": "./client/mod.ts",
"./persistence": "./persistence/persistence.ts",
"./mqttConn": "./mqttConn/mqttConn.ts",
"./mqttPacket": "./mqttPacket/mod.ts",
"./utils": "./utils/mod.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.13.1"
}
}