-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1012 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1012 Bytes
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
{
"name": "use-join",
"version": "4.7.6",
"description": "A React hook for interacting with Crestron processors.",
"type": "module",
"main": "dist/use-join.umd.cjs",
"module": "dist/use-join.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build"
},
"prettier": {},
"keywords": [
"react",
"hook",
"crestron",
"ch5"
],
"types": "dist/index.d.ts",
"author": "Nathan Smith",
"license": "MIT",
"devDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@vitejs/plugin-react": "^4.3.4",
"prettier": "3.5.0",
"vite": "^6.0.2"
},
"dependencies": {
"@pepperdash/ch5-crcomlib-lite": "^2.10.3",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathan-hello/use-join-hook.git"
}
}