-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 807 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
{
"name": "zmod",
"version": "0.1.0",
"description": "A DSP library for generating audiographs from higher level audio components. Built with RNBO, and for zen.cephasteom.co.uk. But hopefully useful elsewhere.",
"author": "CephasTeom",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/zmod.es.js",
"module": "./dist/zmod.es.js",
"type": "module",
"exports": {
".": {
"import": "./dist/zmod.es.js",
"require": "./dist/zmod.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docs": "npx typedoc --name ZMod"
},
"devDependencies": {
"@types/node": "^24.0.10",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"vite": "^7.0.0"
},
"dependencies": {
"tone": "^15.1.22"
}
}