-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@uscreentv/video-player",
"description": "Web-components based video player",
"version": "0.2.4",
"license": "MIT",
"keywords": [
"hls",
"html5 video",
"lit",
"player",
"video-player",
"web-component"
],
"homepage": "https://github.com/Uscreen-video/video-player#readme",
"author": "Uscreen <[email protected]> (https://www.uscreen.tv)",
"bugs": {
"url": "https://github.com/Uscreen-video/video-player/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Uscreen-video/video-player.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./lib/video-player.js",
"customElements": "custom-elements.json",
"exports": {
".": {
"import": "./lib/video-player.js",
"require": "./lib/video-player.umd.cjs"
}
},
"files": [
"dist/**/*",
"lib/**/*",
"types/**/*"
],
"engines": {
"node": "^20",
"pnpm": "^8"
},
"packageManager": "[email protected]",
"cacheDirectories": [
".pnpm-store"
],
"scripts": {
"verify": "npm run prettier:check && npm run lint && npm run build && npm run test",
"build": "pnpm run clean && pnpm run /^build:/",
"build:dist": "vite build",
"build:lib": "vite build -c vite.lib.config.ts",
"build:types": "tsc --declaration --emitDeclarationOnly",
"clean": "rm -rf dist types",
"commitlint": "commitlint --edit",
"dev": "vite dev",
"generate": "hygen component new",
"manifest": "custom-elements-manifest analyze",
"manifest:watch": "pnpm manifest --watch",
"postinstall": "pnpm run manifest",
"prepare": "pnpm dlx playwright install chromium",
"test": "web-test-runner"
},
"dependencies": {
"hls.js": "^1.5.7",
"lit": "^3.1.2",
"lit-html": "^3.1.2",
"mux-embed": "^5.2.0",
"@lit/context": "^1.1.0",
"@lit/reactive-element": "^2.0.4",
"@popperjs/core": "^2.11.8",
"debug": "^4.3.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@custom-elements-manifest/analyzer": "^0.9.4",
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/lit-helpers": "0.7.0",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-helpers": "^3.0.0",
"@types/chromecast-caf-sender": "^1.0.9",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0",
"cem-plugin-better-lit-types": "0.2.1",
"husky": "^9.0.11",
"hygen": "^6.2.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.2",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.2.5",
"semantic-release": "^23.0.5",
"typescript": "^5.4.3",
"typescript-json-schema": "^0.63.0",
"vite": "^5.2.2",
"web-component-analyzer": "2.0.0"
},
"lint-staged": {
"src/**/*.ts": "prettier --write --ignore-unknown"
},
"typesVersions": {
"*": {
"*": [
"types/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
}
}