-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.17 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.17 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
{
"name": "@theoplayer/web-ui",
"version": "1.16.1",
"description": "UI component library for the THEOplayer Web SDK",
"main": "dist/THEOplayerUI.js",
"module": "dist/THEOplayerUI.mjs",
"types": "dist/THEOplayerUI.d.ts",
"exports": {
".": {
"types": "./dist/THEOplayerUI.d.ts",
"node": "./dist/THEOplayerUI.node.mjs",
"import": "./dist/THEOplayerUI.mjs",
"default": "./dist/THEOplayerUI.js"
},
"./es5": {
"types": "./dist/THEOplayerUI.d.ts",
"node": "./dist/THEOplayerUI.node.mjs",
"import": "./dist/THEOplayerUI.es5.mjs",
"default": "./dist/THEOplayerUI.es5.js"
},
"./dist/*": "./dist/*",
"./package": "./package.json",
"./package.json": "./package.json"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"build": "npm run build:prod",
"build:debug": "rollup -c",
"build:prod": "rollup -c --environment BUILD:production",
"watch": "rollup -c --watch",
"watch:docs": "npm run watch -- --configOutputDir ./docs/_site/dist",
"start": "serve",
"format": "prettier --write .",
"test": "npm run test:format && npm run test:typecheck && npm run test:unit",
"test:format": "prettier --check .",
"test:typecheck": "tsc --project . --noEmit",
"test:unit": "node --test test/ssr.test.mjs",
"docs": "cross-env NODE_OPTIONS=\"--experimental-require-module\" typedoc --treatWarningsAsErrors",
"docs:watch": "cross-env NODE_OPTIONS=\"--experimental-require-module\" typedoc --watch",
"changeset:version": "changeset version && node .changeset/post-process.mjs"
},
"keywords": [],
"author": "THEO Technologies",
"license": "MIT",
"homepage": "https://github.com/THEOplayer/web-ui#readme",
"bugs": "https://github.com/THEOplayer/web-ui/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/THEOplayer/web-ui.git"
},
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.3.0"
},
"peerDependencies": {
"theoplayer": "^7 || ^8 || ^9 || ^10"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@changesets/types": "^6.1.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-virtual": "^3.0.2",
"@rollup/pluginutils": "^5.1.4",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.15",
"@swc/helpers": "^0.5.15",
"@types/html-minifier": "^4.0.5",
"@webcomponents/shadycss": "^1.11.2",
"@webcomponents/webcomponentsjs": "^2.8.0",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"postcss": "^8.5.2",
"postcss-mixins": "^11.0.3",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.6.2",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-swc3": "^0.12.1",
"serve": "^14.2.4",
"theoplayer": "^10.6.1",
"tslib": "^2.8.1",
"typedoc": "^0.27.7",
"typedoc-plugin-mdn-links": "^4.0.12",
"typescript": "^5.7.3"
},
"browserslist": [
"last 2 versions",
"not dead",
"chrome >= 67",
"firefox esr"
],
"workspaces": [
".",
"react"
]
}