-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"name": "@sina_byn/re-audio",
"version": "2.0.3",
"type": "module",
"main": "./dist/re-audio.umd.cjs",
"module": "./dist/re-audio.js",
"types": "./dist/re-audio.d.ts",
"exports": {
".": {
"import": "./dist/re-audio.js",
"require": "./dist/re-audio.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"prebuild": "rimraf dist",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"author": "Sina Bayandorian <[email protected]> (https://portfolio-sina-byn.vercel.app/)",
"description": "A highly customizable React audio player library with support for modern web audio features and seamless integration into any React application.",
"repository": "github:sina-byn/re-audio",
"homepage": "https://sina-byn.github.io/re-audio/",
"peerDependencies": {
"react": "19.*",
"react-dom": "19.*"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-dts": "^4.0.3"
},
"bugs": {
"url": "https://github.com/sina-byn/re-audio/issues",
"email": "[email protected]"
},
"keywords": [
"re-audio",
"react",
"react hooks",
"react component",
"javascript",
"typescript",
"audio",
"audio player",
"audio library",
"custom audio player",
"media",
"media player",
"music player",
"web audio",
"UI component",
"open source"
]
}