-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) Β· 2.49 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) Β· 2.49 KB
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
73
74
75
76
77
78
79
{
"name": "@norgate-av/react-crestron-ch5-hooks",
"description": "A collection of Crestron CH5 hooks β for React π",
"version": "2.0.0",
"keywords": [
"react",
"hooks",
"crestron",
"ch5"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/react-crestron-ch5-hooks.esm.js",
"typings": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Norgate-AV/react-crestron-ch5-hooks.git"
},
"bugs": {
"url": "https://github.com/Norgate-AV/react-crestron-ch5-hooks/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "vite-node",
"prebuild": "pnpm clean:dist",
"build": "tsup",
"test": "vitest --run --passWithNoTests",
"test:coverage": "pnpm clean:coverage && vitest --passWithNoTests --coverage",
"lint": "tsc",
"prepare": "husky",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"clean:all": "pnpm clean:dist && pnpm clean:coverage",
"commit": "git-cz",
"pretty:fix": "prettier --write .",
"doctoc": "doctoc --title '## Contents π' README.md",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"contrib:check": "all-contributors check"
},
"peerDependencies": {
"@crestron/ch5-crcomlib": "^2.0.0",
"react": ">=18"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@crestron/ch5-crcomlib": "npm:@norgate-av/ch5-crcomlib@^2.17.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.2",
"all-contributors-cli": "^6.20.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"doctoc": "^2.1.0",
"happy-dom": "^20.8.9",
"husky": "^9.0.11",
"lint-staged": "^16.4.0",
"prettier": "^3.2.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"terser": "^5.28.1",
"tsup": "^8.0.2",
"typescript": "^6.0.2",
"vite-node": "^6.0.0",
"vitest": "^4.1.2"
}
}