-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1005 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1005 Bytes
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
{
"name": "oiplayer",
"version": "0.0.4",
"description": "OIPlayer is a html5 and Javascript mediaplayer.",
"main": "dist/oiplayer.js",
"exports": {
".": "./dist/oiplayer.js",
"./dist/oiplayer.css": "./dist/oiplayer.css"
},
"files": [
"dist/"
],
"keywords": [
"mediaplayer",
"video",
"audio",
"html5",
"player"
],
"scripts": {
"build": "webpack",
"dist": "webpack --config webpack.dist.config.js",
"start": "webpack serve --open-app-name 'Google Chrome'"
},
"author": "André van Toly",
"license": "ISC",
"devDependencies": {
"css-loader": "^6.8.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.2",
"mini-css-extract-plugin": "^2.9.4",
"path": "^0.12.7",
"raw-loader": "^4.0.2",
"sass": "^1.97.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.84.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^5.2.1"
}
}