forked from moqtail/moqtail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"type": "module",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"prepare": "node .husky/install.mjs",
"changeset": "changeset",
"changeset:release": "npm run build && changeset publish",
"version": "changeset version && node scripts/postversion.mjs",
"build": "npm --prefix libs/moqtail-ts run build && npm --prefix apps/client-js run build",
"test": "npm --prefix libs/moqtail-ts run test -- run",
"format": "npm --prefix libs/moqtail-ts run format && npm --prefix apps/client-js run format"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"glob": "^13.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prompts": "^2.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "npm@11.9.0",
"dependencies": {
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-webgpu": "^4.22.0"
}
}