-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·23 lines (23 loc) · 1.25 KB
/
package.json
File metadata and controls
executable file
·23 lines (23 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "flues",
"version": "0.1.0",
"description": "Flues project - C and JavaScript experiments",
"type": "module",
"scripts": {
"dev": "npm run ghp && vite --open",
"ghp": "npm run build:all && npm run copy:www",
"build:all": "npm run build:clarinet && npm run build:pm && npm run build:disyn && npm run build:chatterbox && npm run build:trajectory",
"build:clarinet": "cd experiments/clarinet-synth && npm run build",
"build:pm": "cd experiments/pm-synth && npm run build",
"build:disyn": "cd experiments/disyn && npm run build",
"build:chatterbox": "cd experiments/chatterbox && npm run build",
"build:trajectory": "cd experiments/trajectory && npm run build",
"copy:www": "rm -rf www/clarinet-synth www/pm-synth www/disyn www/chatterbox www/trajectory && mkdir -p www/clarinet-synth www/pm-synth www/disyn www/chatterbox www/trajectory && cp -r experiments/clarinet-synth/dist/. www/clarinet-synth/ && cp -r experiments/pm-synth/dist/. www/pm-synth/ && cp -r experiments/disyn/dist/. www/disyn/ && cp -r experiments/chatterbox/dist/. www/chatterbox/ && cp -r experiments/trajectory/dist/. www/trajectory/"
},
"keywords": [],
"author": "Danny Ayers",
"license": "MIT",
"devDependencies": {
"vite": "^5.0.0"
}
}