@theoplayer/web-ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@theoplayer/web-ui",
3
+ "version": "1.0.0",
4
+ "description": "UI component library for the THEOplayer Web SDK",
5
+ "main": "dist/THEOplayerUI.js",
6
+ "module": "dist/THEOplayerUI.mjs",
7
+ "types": "dist/THEOplayerUI.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/THEOplayerUI.d.ts",
11
+ "import": "./dist/THEOplayerUI.mjs",
12
+ "default": "./dist/THEOplayerUI.js"
13
+ },
14
+ "./dist/*": "./dist/*"
15
+ },
16
+ "files": [
17
+ "dist/"
18
+ ],
19
+ "scripts": {
20
+ "build": "npm run build:prod",
21
+ "build:debug": "rollup -c",
22
+ "build:prod": "rollup -c --environment BUILD:production",
23
+ "watch": "rollup -c --watch",
24
+ "start": "serve .",
25
+ "format": "prettier --write .",
26
+ "test": "npm run test:format && npm run test:typecheck",
27
+ "test:format": "prettier --check .",
28
+ "test:typecheck": "tsc --project . --noEmit",
29
+ "docs": "typedoc --treatWarningsAsErrors",
30
+ "docs:watch": "typedoc --watch",
31
+ "prepare": "npm run build:prod"
32
+ },
33
+ "keywords": [],
34
+ "author": "THEO Technologies",
35
+ "license": "MIT",
36
+ "peerDependencies": {
37
+ "theoplayer": "^4"
38
+ },
39
+ "devDependencies": {
40
+ "@rollup/plugin-node-resolve": "^15.0.1",
41
+ "@rollup/pluginutils": "^5.0.2",
42
+ "@swc/cli": "^0.1.57",
43
+ "@swc/core": "^1.3.14",
44
+ "@swc/helpers": "^0.4.13",
45
+ "@types/html-minifier": "^4.0.2",
46
+ "@webcomponents/shadycss": "^1.11.1",
47
+ "@webcomponents/webcomponentsjs": "^2.7.0",
48
+ "html-minifier": "^4.0.0",
49
+ "postcss": "^8.4.19",
50
+ "postcss-mixins": "^9.0.4",
51
+ "postcss-preset-env": "^7.8.3",
52
+ "prettier": "^2.7.1",
53
+ "rollup": "^3.3.0",
54
+ "rollup-plugin-dts": "^5.2.0",
55
+ "rollup-plugin-postcss": "^4.0.2",
56
+ "rollup-plugin-string": "^3.0.0",
57
+ "rollup-plugin-swc3": "^0.8.0",
58
+ "rollup-plugin-typescript-resolve": "^1.0.1",
59
+ "serve": "^14.1.2",
60
+ "theoplayer": "^4.6.0",
61
+ "tslib": "^2.4.1",
62
+ "typedoc": "^0.23.28",
63
+ "typescript": "^4.9.3"
64
+ },
65
+ "browserslist": [
66
+ "last 2 versions",
67
+ "chrome >= 47",
68
+ "ie >= 11"
69
+ ]
70
+ }