-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "@madzadev/audio-player",
"version": "2.1.14",
"description": "React/NextJS audio player for your music, with custom controls, playlist, filters, and search functionality.",
"keywords": [
"react",
"nextjs",
"audio",
"player",
"mp3",
"music"
],
"author": "Madza <[email protected]> (http://madza.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/madzadev/audio-player.git"
},
"homepage": "https://audioplayer.madza.dev/",
"bugs": {
"url": "https://github.com/madzadev/audio-player/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/audio-player.umd.cjs",
"module": "./dist/audio-player.js",
"exports": {
".": {
"import": "./dist/audio-player.js",
"require": "./dist/audio-player.umd.cjs"
},
"./dist/index.css": "./dist/style.css"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"vite": "^5.0.8"
}
}