-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.42 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
{
"name": "@theoplayer/web-ui",
"version": "1.9.3",
"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": "typedoc --treatWarningsAsErrors",
"docs:watch": "typedoc --watch",
"version": "npm run version:changelog && npm run version:deps && npm run version:react",
"version:changelog": "node scripts/bump-changelog.mjs web-ui CHANGELOG.md && git add CHANGELOG.md",
"version:deps": "cross-env-shell \"npm install $npm_package_name@$npm_package_version --workspace react && git add react/package.json\"",
"version:react": "cross-env-shell \"npm version $npm_package_version --workspace react --no-git-tag-version && git add react/package.json\"",
"github:changelog": "node scripts/github-changelog.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.2.0"
},
"peerDependencies": {
"theoplayer": "^7 || ^8"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-virtual": "^3.0.2",
"@rollup/pluginutils": "^5.0.4",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.89",
"@swc/helpers": "^0.5.2",
"@types/html-minifier": "^4.0.3",
"@webcomponents/shadycss": "^1.11.2",
"@webcomponents/webcomponentsjs": "^2.8.0",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"postcss": "^8.4.30",
"postcss-mixins": "^9.0.4",
"postcss-preset-env": "^8.5.1",
"prettier": "^2.8.8",
"rollup": "^3.29.3",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-swc3": "^0.8.2",
"serve": "^14.2.3",
"theoplayer": "^7.0.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.8",
"typedoc-plugin-mdn-links": "^3.1.14",
"typescript": "^5.1.6"
},
"browserslist": [
"last 2 versions",
"not dead",
"chrome >= 67",
"firefox esr"
],
"workspaces": [
".",
"react"
]
}