-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "@awesome-web-projects/music-player",
"version": "1.0.0",
"description": "Framework-agnostic audio player Web Components with multiple skins. Powered by @awesome-web-projects/audio-engine.",
"author": "Daniel Barion (https://github.com/danielbarion)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/music-player.cjs",
"module": "./dist/music-player.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/music-player.js",
"require": "./dist/music-player.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danielbarion/music-player.git"
},
"keywords": [
"audio",
"player",
"web-components",
"custom-elements",
"shadow-dom",
"visualizer",
"web-audio-api",
"typescript"
],
"dependencies": {
"@awesome-web-projects/audio-engine": "^1.0.0",
"lit": "^3.3.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"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",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
}
}