-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
48 lines (48 loc) · 1.7 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
{
"name": "@mux/elements",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"version": "0.1.0",
"description": "Custom elements for working with media in the browser that Just Work™",
"main": "index.js",
"repository": "https://github.com/muxinc/elements",
"author": "Mux, Inc.",
"license": "MIT",
"private": true,
"devDependencies": {
"husky": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"turbo": "^1.13.2"
},
"workspaces": [
"packages/*",
"examples/*",
"scripts/*",
"shared/*"
],
"scripts": {
"format": "prettier --write .",
"clean": "turbo run clean",
"lint": "turbo run lint --filter '!./examples/*'",
"test": "turbo run test --filter '!./examples/*'",
"dev": "turbo run dev --concurrency=20 --filter '!./examples/*'",
"build:packages": "turbo run build --filter '!./examples/*'",
"build": "turbo run build",
"i18n": "turbo run i18n",
"prepare": "husky install",
"deploy": "lerna publish from-package --no-private --no-verify-access --conventional-commits --conventional-prerelease=@mux/mux-active-viewer-count",
"deploy:canary": "lerna run deploy:canary --npm-client=npm --scope @mux/*",
"version:update": "lerna version --exact --no-private --conventional-commits --conventional-prerelease=@mux/mux-active-viewer-count",
"create-release-notes": "lerna run create-release-notes --scope @mux/*",
"publish-release": "lerna run publish-release --scope @mux/* --"
},
"resolutions": {
"@web/test-runner-chrome": "0.13.0",
"playwright": "1.45.3"
},
"packageManager": "yarn@1.22.21+sha256.dbed5b7e10c552ba0e1a545c948d5473bc6c5a28ce22a8fd27e493e3e5eb6370"
}