-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.79 KB
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": "@awesome-web-projects/react-player",
"version": "2.1.1",
"description": "A React audio player component with circular frequency visualization powered by the Web Audio API and Canvas.",
"author": "Daniel Barion (https://github.com/danielbarion)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/react-player.cjs",
"module": "./dist/react-player.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-player.js",
"require": "./dist/react-player.cjs"
},
"./styles.css": "./dist/style.css"
},
"files": [
"dist"
],
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danielbarion/react-player.git"
},
"bugs": {
"url": "https://github.com/danielbarion/react-player/issues"
},
"homepage": "https://github.com/danielbarion/react-player#readme",
"keywords": [
"react",
"audio",
"player",
"visualizer",
"web-audio-api",
"canvas",
"typescript",
"component"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@awesome-web-projects/audio-engine": "^1.0.0",
"lucide-react": "^0.511.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.5.0",
"vite": "^6.3.0",
"vite-plugin-dts": "^4.5.0"
},
"scripts": {
"dev": "vite --open",
"build": "vite build --mode lib",
"build:demo": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
}
}