-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.77 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.77 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
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
{
"name": "@nomercy-entertainment/nomercy-video-player",
"version": "1.0.0-beta.4",
"description": "Full event-driven video player without a UI.",
"type": "module",
"main": "./dist/nomercy-video-player.cjs",
"module": "./dist/nomercy-video-player.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/nomercy-video-player.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/nomercy-video-player.cjs"
}
},
"./src/types": "./src/types.ts",
"./src/types.ts": "./src/types.ts",
"./src": "./src/index.ts",
"./src/index": "./src/index.ts",
"./src/helpers": "./src/helpers.ts",
"./src/plugin": "./src/plugin.ts",
"./src/plugins/*": "./src/plugins/*",
"./dist/*": "./dist/*"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/NoMercy-Entertainment/NoMercyVideoPlayer.git"
},
"contributors": [
"Stoney Eagle <stoney@nomercy.tv>"
],
"homepage": "https://github.com/NoMercy-Entertainment/NoMercyVideoPlayer",
"author": {
"name": "NoMercy Entertainment",
"email": "info@nomercy.tv",
"url": "https://nomercy.tv"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"public"
],
"scripts": {
"build": "vite build",
"dev": "vite --port 5502 --host",
"lint": "eslint --fix .",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"video",
"player",
"NoMercy"
],
"dependencies": {
"@nomercy-entertainment/media-session": "^1.0.0",
"@types/webvtt-parser": "2.2.0",
"hls.js": "1.6.15",
"tailwind-merge": "3.5.0",
"webvtt-parser": "2.2.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "0.4.4",
"@types/jest": "29.5.5",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"autoprefixer": "10.4.14",
"copyfiles": "2.4.1",
"css-loader": "6.8.1",
"eslint": "8.55.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tailwindcss": "3.8.3",
"jest": "29.7.0",
"postcss": "8.5.6",
"postcss-loader": "7.3.3",
"postcss-nested": "7.0.2",
"postcss-preset-env": "9.2.0",
"prettier": "3.3.3",
"sass": "1.85.0",
"sass-loader": "13.3.2",
"shx": "0.3.4",
"tailwindcss": "3.2.7",
"tailwindcss-children": "2.1.0",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"vite": "7.1.6",
"vite-plugin-dts": "4.5.0",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.2"
},
"publishConfig": {
"access": "public"
}
}