forked from dyte-io/device-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
{
"name": "@dytesdk/device-emulator",
"main": "./dist/index.cjs.js",
"browser": "./dist/index.iife.js",
"module": "./dist/index.es.js",
"types": "./types/index.d.ts",
"version": "1.12.0",
"description": "Adds methods to emulate various devices on MediaDevices class.",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./types/index.d.ts"
},
"./inlined": {
"types": "./types/index.d.ts",
"default": "./dist/index.iife.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --max-warnings 0 --ext .ts --fix .",
"prepare": "is-ci || husky install",
"build": "tsc && vite build && VITE_IIFE=true vite build -c vite.iife.config.ts",
"dev": "npm run build && vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-io/device-emulator.git"
},
"keywords": [],
"author": "https://github.com/dyte-io",
"license": "ISC",
"bugs": {
"url": "https://github.com/dyte-io/device-emulator/issues"
},
"homepage": "https://github.com/dyte-io/device-emulator#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.1",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^12.3.3",
"semantic-release": "^17.4.7",
"typescript": "^5.0.2",
"vite": "^2.9.14"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"deepmerge": "^4.2.2",
"worker-timers": "^7.0.73"
},
"files": ["/dist", "/types"]
}