forked from muxinc/media-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"private": true,
"name": "media-elements",
"version": "0.0.0",
"description": "A collection of HTMLMediaElement compatible elements and add-ons.",
"author": "@muxinc",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/muxinc/media-elements#readme",
"bugs": {
"url": "https://github.com/muxinc/media-elements/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/media-elements.git"
},
"workspaces": [
"scripts/*",
"packages/custom-media-element",
"packages/media-played-ranges-mixin",
"packages/super-media-element",
"packages/media-tracks",
"packages/castable-video",
"packages/*",
"examples/*"
],
"scripts": {
"clean": "rimraf packages/*/dist",
"lint": "turbo lint",
"test": "turbo test --concurrency=1",
"dev": "turbo run dev --concurrency=20 --filter '!./examples/*' & turbo watch build --filter '!./examples/*'",
"build": "turbo build"
},
"devDependencies": {
"eslint": "^8.57.0",
"rimraf": "^6.0.1",
"turbo": "^2.5.4",
"typescript": "^5.7.2"
},
"packageManager": "npm@11.0.0"
}