-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
73
74
75
76
77
78
79
80
81
{
"name": "@norgate-av/crestron-ch5-helper",
"description": "A helper collection of Crestron CH5 constants 😀",
"version": "2.0.0",
"keywords": [
"ch5",
"crestron",
"typescript",
"helper"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Norgate-AV/crestron-ch5-helper.git"
},
"bugs": {
"url": "https://github.com/Norgate-AV/crestron-ch5-helper/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "pnpm clean && pnpm lint",
"build": "tsup",
"pretest": "pnpm build",
"test": "vitest",
"lint": "tsc && eslint . --fix",
"prepare": "husky",
"size": "size-limit",
"analyze": "size-limit --why",
"clean": "rimraf dist",
"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"
},
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "10 KB"
},
{
"path": "dist/index.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.8.0",
"@norgate-av/ch5-join-getter": "^1.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@size-limit/preset-small-lib": "^11.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"all-contributors-cli": "^6.20.0",
"cz-conventional-changelog": "3.3.0",
"doctoc": "^2.1.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"size-limit": "^11.0.2",
"terser": "^5.28.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.1",
"vitest": "^3.0.4"
}
}