-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "micropython-steami-lib",
"private": true,
"description": "MicroPython driver library for the STeaMi board.",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "make build",
"clean": "make clean",
"setup": "make setup",
"ci": "make ci",
"prepare": "make prepare",
"commit:checks": "npx --no-install git-precommit-checks && npx lint-staged && npx validate-branch-name && git-cz",
"prepare-commit": "cross-env CHECKS_RUN=1 npm run commit:checks"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/cz-commitlint": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^9.3.0",
"cross-env": "^10.1.0",
"git-precommit-checks": "^3.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.3.3",
"semantic-release": "^25.0.3",
"validate-branch-name": "^1.3.1"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.py": "ruff check"
},
"overrides": {
"picomatch": "^4.0.4",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"tmp": "^0.2.4",
"brace-expansion": "^2.0.3"
}
}