-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "@jellyfish-dev/browser-media-utils",
"version": "0.0.1",
"description": "Facilitates the use of getUserMedia and enumerateDevices.",
"license": "Apache-2.0",
"author": "Membrane Team",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/jellyfish-dev/browser-media-utils/issues"
},
"homepage": "https://github.com/jellyfish-dev/browser-media-utils#readme",
"keywords": [
"membrane",
"jellyfish"
],
"repository": {
"type": "git",
"url": "git://github.com/jellyfish-dev/browser-media-utils.git"
},
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
},
"scripts": {
"build": "rimraf dist && tsc",
"docs": "typedoc src",
"format": "prettier --write . --ignore-path ./.eslintignore",
"format:check": "prettier --check . --ignore-path ./.eslintignore",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "rimraf dist && tsc"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"rimraf": "^4.1.2",
"typedoc": "^0.23.28",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "^4.9.5"
},
"dependencies": {}
}