csound build

This commit is contained in:
Felix Roos 2023-01-28 22:27:18 +01:00
parent 555fe0b629
commit cde23bbf98
4 changed files with 34 additions and 5 deletions

View file

@ -1,10 +1,14 @@
{
"name": "@strudel.cycles/csound",
"version": "0.5.1",
"version": "0.6.0",
"description": "csound bindings for strudel",
"main": "csound.mjs",
"main": "index.mjs",
"publishConfig": {
"main": "dist/index.js",
"module": "dist/index.mjs"
},
"scripts": {
"test": "echo \"No tests present.\" && exit 0"
"build": "vite build"
},
"repository": {
"type": "git",
@ -27,8 +31,11 @@
},
"homepage": "https://github.com/tidalcycles/strudel#readme",
"dependencies": {
"@csound/browser": "^6.18.3",
"@strudel.cycles/core": "workspace:*",
"@strudel.cycles/webaudio": "workspace:*",
"@csound/browser": "^6.18.3"
"@strudel.cycles/webaudio": "workspace:*"
},
"devDependencies": {
"vite": "^3.2.2"
}
}