-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
98 lines (98 loc) · 2.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "player.style",
"version": "0.0.13",
"description": "A fresh collection of media player themes for every use case!",
"author": "@muxinc",
"license": "MIT",
"homepage": "https://github.com/muxinc/player.style#readme",
"bugs": {
"url": "https://github.com/muxinc/player.style/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/player.style.git"
},
"files": [
"themes/*",
"!.*"
],
"type": "module",
"exports": {
"./*/react": {
"types": "./themes/*/dist/react.d.ts",
"import": "./themes/*/dist/react.js",
"require": "./themes/*/dist/cjs/react.js",
"default": "./themes/*/dist/react.js"
},
"./*.js": {
"types": "./themes/*/dist/media-theme.d.ts",
"import": "./themes/*/dist/media-theme.js",
"require": "./themes/*/dist/cjs/media-theme.js",
"default": "./themes/*/dist/media-theme.js"
},
"./*": {
"types": "./themes/*/dist/media-theme.d.ts",
"import": "./themes/*/dist/media-theme.js",
"require": "./themes/*/dist/cjs/media-theme.js",
"default": "./themes/*/dist/media-theme.js"
}
},
"typesVersions": {
"*": {
"*/react": [
"./themes/*/dist/react.d.ts"
],
"*": [
"./themes/*/dist/media-theme.d.ts"
]
}
},
"workspaces": [
".",
"site",
"examples/*",
"scripts/*",
"themes/*"
],
"scripts": {
"dev": "chokidar --debounce 50 './themes/*/!(dist|.turbo)' -c 'turbo build --force --filter=./$(dirname {path}) && touch ./site/$(dirname {path}).md'"
},
"dependencies": {
"media-chrome": "^4.2.2"
},
"devDependencies": {
"@player.style/demuxed-2022": "0.0.12",
"@player.style/halloween": "0.0.2",
"@player.style/instaplay": "0.0.7",
"@player.style/microvideo": "0.0.11",
"@player.style/minimal": "0.0.11",
"@player.style/notflix": "0.0.8",
"@player.style/reelplay": "0.0.5",
"@player.style/sutro": "0.0.7",
"@player.style/sutro-audio": "0.0.6",
"@player.style/tailwind-audio": "0.0.11",
"@player.style/vimeonova": "0.0.11",
"@player.style/winamp": "0.0.11",
"@player.style/yt": "0.0.12",
"chokidar-cli": "^3.0.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"turbo": "^2.1.1",
"typescript": "^5"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
},
"packageManager": "npm@10.8.3"
}