-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
41 lines (41 loc) · 1.13 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
{
"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",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"turbo": "^2.3.3"
},
"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"
},
"resolutions": {
"playwright": "1.45.3"
},
"packageManager": "[email protected]+sha256.dbed5b7e10c552ba0e1a545c948d5473bc6c5a28ce22a8fd27e493e3e5eb6370"
}