-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "react-mqtt-hooks",
"version": "0.0.3",
"description": "React Hooks for MQTT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm build",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [
"mqtt",
"react",
"hooks",
"iot",
"esp",
"stm32"
],
"repository": {
"url": "https://github.com/erich2s/react-mqtt-hooks"
},
"homepage": "https://github.com/erich2s/react-mqtt-hooks",
"author": "Eric Huang",
"license": "MIT",
"dependencies": {
"mqtt": "^5.4.0",
"react": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@swc/core": "^1.4.8",
"@types/node": "^20.11.27",
"@types/react": "^18.2.65",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}