-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 979 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 979 Bytes
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
{
"name": "spectro-viewer",
"version": "0.2.0-ratpenats",
"description": "Local Ratpenats fork of SpectroViewer with canvas-rendered spectrogram data tiles.",
"type": "module",
"main": "dist/spectro-viewer.umd.cjs",
"module": "dist/spectro-viewer.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/spectro-viewer.js",
"require": "./dist/spectro-viewer.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run"
},
"keywords": [
"spectrogram",
"viewer",
"audio",
"bioacoustics",
"waveform",
"regions",
"annotations",
"timeline",
"bat-detector",
"ultrasound"
],
"author": "",
"license": "MIT",
"devDependencies": {
"typescript": "^5.7.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.1.4"
}
}