-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "spectrogram-js",
"version": "1.1.2",
"description": "🎶 A simple and intuitive TypeScript library for generating spectrogram waterfall plots.",
"main": "dist/spectrogram-js.cjs.js",
"module": "dist/spectrogram-js.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/spectrogram-js.es.js",
"require": "./dist/spectrogram-js.cjs.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/anyshake/spectrogram-js"
},
"homepage": "https://github.com/anyshake/spectrogram-js",
"bugs": {
"url": "https://github.com/anyshake/spectrogram-js/issues"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"example": "vite build --mode example",
"prepublishOnly": "npm run build"
},
"keywords": [
"spectrogram",
"waterfall",
"typescript",
"fft"
],
"author": "anyshake",
"contributors": [
"whes1015"
],
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"webfft": "^1.0.3"
}
}