forked from muxinc/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"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": "^9.1.7",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"turbo": "^2.4.4"
},
"overrides": {
"eslint": "^9.22.0",
"playwright": "1.45.3",
"shelljs": "0.9.2",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/*",
"examples/*",
"scripts/*",
"shared/*"
],
"scripts": {
"format": "prettier --write .",
"clean": "turbo run clean",
"lint": "turbo run lint --filter '!./examples/*'",
"test": "turbo run test --concurrency=1 --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"
},
"packageManager": "npm@11.2.0"
}