-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.23 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.23 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
{
"name": "homebridge-hatch-baby-rest-repo",
"type": "module",
"private": true,
"scripts": {
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"build": "turbo run build",
"version": "changeset version && npm i",
"release": "turbo run build test lint && changeset publish",
"example": "node -r @swc-node/register ./packages/examples/example.ts",
"plus-example": "node -r @swc-node/register ./packages/examples/rest-plus-example.ts",
"hb": "npm run build && TEST_HOMEBRIDGE=true homebridge -U ./.homebridge",
"push-with-tags": "git push --follow-tags",
"predeploy": "git pull -r && turbo run build test lint",
"postdeploy": "npm run push-with-tags",
"deploy": "changeset version && git commit -am 'Bump versions for release' && changeset publish",
"prepare-beta": "changeset pre enter beta && git add .changeset/pre.json && git commit -am 'Prepare for beta release'",
"exit-beta": "changeset pre exit && git commit -am 'Exit beta release'"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"turbo": "^2.8.9"
},
"workspaces": [
"packages/*"
],
"packageManager": "npm@11.10.0"
}