-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "react-voicemail-player",
"version": "0.0.10",
"description": "React component for rendering voice messages in chat-based apps",
"homepage": "https://github.com/vadimavdeev/react-voicemail-player",
"type": "module",
"main": "dist/react-voicemail-player.cjs.js",
"module": "dist/react-voicemail-player.esm.js",
"typings": "dist/react-voicemail-player.d.ts",
"files": [
"dist"
],
"scripts": {
"serve": "node ./scripts/serve.mjs",
"start": "concurrently --kill-others --raw \"yarn:serve\" \"yarn:typecheck\"",
"build": "node ./scripts/build.mjs && api-extractor run",
"test": "vitest",
"typecheck": "tsc -w",
"lint": "eslint src --fix",
"docs": "api-extractor run --local && api-documenter markdown -i temp -o docs/api",
"serve:e2e": "serve .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "[email protected]:vadimavdeev/react-voicemail-player.git"
},
"keywords": [
"react",
"voice",
"voicemail",
"audio",
"player"
],
"author": "Vadym Avdieiev",
"license": "MIT",
"engines": {
"node": ">= 14"
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-dom": ">= 18.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.22.33",
"@microsoft/api-extractor": "^7.36.4",
"@playwright/test": "^1.37.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"concurrently": "^8.2.0",
"esbuild": "0.18.11",
"eslint": "^8.48.0",
"jsdom": "^22.1.0",
"prettier": "3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve": "^14.2.1",
"serve-handler": "^6.1.5",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
},
"dependencies": {}
}