-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.6 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
{
"name": "webrtc-mock",
"version": "1.1.6",
"description": "Classes and functions mock webrtc api for tests",
"keywords": [
"webrtc",
"test",
"mock"
],
"bugs": {
"url": "https://github.com/Krivega/webrtc-mock/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krivega/webrtc-mock.git"
},
"license": "MIT",
"author": {
"name": "Krivega Dmitriy",
"email": "[email protected]",
"url": "https://krivega.com"
},
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"lint": "yarn lint:js && yarn lint:ts",
"lint:js": "eslint src --ext ts,tsx --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
"lint:ts": "tsc",
"prepare": "husky",
"prepublishOnly": "yarn build",
"preview": "vite preview",
"release": "standard-version && npm run release:publish",
"release:major": "standard-version --release-as major && npm run release:publish",
"release:pre": "standard-version --prerelease && npm run release:publish",
"release:publish": "git push --follow-tags origin master && npm publish"
},
"dependencies": {
"events-constructor": "^1.2.3",
"@types/dom-mediacapture-transform": "^0.1.9"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@nabla/vite-plugin-eslint": "^2.0.4",
"@types/dom-mediacapture-transform": "^0.1.9",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tsc-files": "^1.1.4",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vite-tsconfig-paths": "^5.0.1"
},
"peerDependencies": {
"events-constructor": "^1.2.3",
"@types/dom-mediacapture-transform": "^0.1.9"
},
"packageManager": "[email protected]"
}