-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "@awesome-web-projects/audio-engine",
"version": "1.0.0",
"description": "Framework-agnostic audio engine powered by the Web Audio API. Streaming, playlist management, and visualization support.",
"author": "Daniel Barion (https://github.com/danielbarion)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/audio-engine.cjs",
"module": "./dist/audio-engine.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/audio-engine.js",
"require": "./dist/audio-engine.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeWebProjects/audio-engine.git"
},
"bugs": {
"url": "https://github.com/AwesomeWebProjects/audio-engine/issues"
},
"homepage": "https://github.com/AwesomeWebProjects/audio-engine#readme",
"keywords": [
"audio",
"engine",
"web-audio-api",
"player",
"streaming",
"playlist",
"typescript"
],
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^5.5.0",
"vite": "^6.3.0",
"vite-plugin-dts": "^4.5.0"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
}
}