-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 2.83 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
106
107
108
{
"name": "@maveio/components",
"version": "0.0.139",
"description": "privacy friendly (🇪🇺), iframe-less, video UI elements for videos hosted on mave.io",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"default": "./dist/react.cjs"
}
},
"sideEffects": [
"dist/*"
],
"type": "module",
"files": [
"dist"
],
"scripts": {
"ts-types": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"build:prod": "NODE_ENV=production npm run build",
"localize": "lit-localize extract && ./node_modules/.bin/lit-localize build",
"prepublishOnly": "npm run build:prod",
"test": "jest",
"test:watch": "jest --watchAll",
"lint:fix": "eslint ./src --ext .ts,.tsx --quiet --fix --ixgnore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maveio/components.git"
},
"devDependencies": {
"@lit/localize-tools": "^0.6.10",
"@types/hls.js": "^1.0.0",
"@types/jest": "^29.4.0",
"@types/phoenix": "^1.5.5",
"@types/react": "^18.0.31",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"dotenv": "^16.0.3",
"esbuild-plugin-replace": "^1.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2"
},
"author": "mave.io",
"license": "AGPL-3.0-or-later",
"compilerOptions": {
"types": [
"jest"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"bugs": {
"url": "https://github.com/maveio/components/issues"
},
"homepage": "https://github.com/maveio/components#readme",
"dependencies": {
"@lit-labs/observers": "^2.0.2",
"@lit/react": "^1.0.5",
"@lit/localize": "^0.12.1",
"@lit/task": "^1.0.0",
"@lottiefiles/lottie-player": "^2.0.2",
"@maveio/metrics": "^0.1.5",
"hls.js": "^1.5.15",
"lit": "^3.1.2",
"media-chrome": "^2.2.4",
"phoenix": "^1.7.11",
"react": "^18.2.0",
"tus-js-client": "^4.2.3"
},
"directories": {
"test": "tests"
}
}