forked from hvianna/audioMotion-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "audiomotion-analyzer",
"description": "High-resolution real-time graphic audio spectrum analyzer JavaScript module with no dependencies.",
"version": "4.5.0",
"main": "./dist/esm/index.mjs",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": ["dist", "src"],
"funding": {
"type": "Ko-fi",
"url": "https://ko-fi.com/hvianna"
},
"scripts": {
"build": "rm -rf dist/* && swc src/audioMotion-analyzer.ts -C module.type=commonjs --out-file dist/cjs/index.js && swc src/audioMotion-analyzer.ts --out-file dist/esm/index.mjs && tsc && mv dist/types/audioMotion-analyzer.d.ts dist/types/index.d.ts",
"prepare": "npm run build",
"start": "npx http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/hvianna/audioMotion-analyzer"
},
"keywords": [
"spectrum analyzer",
"graphic analyzer",
"audio",
"music",
"visualization"
],
"author": "Henrique Vianna <hvianna@gmail.com> (https://henriquevianna.com)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hvianna/audioMotion-analyzer/issues"
},
"homepage": "https://audiomotion.dev",
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.6.3",
"@types/node": "^20.14.6",
"typescript": "^5.4.5"
}
}