transpiler build

This commit is contained in:
Felix Roos 2023-01-28 23:12:00 +01:00
parent ffaa8f4ab3
commit cd1da3cb81
3 changed files with 28 additions and 1 deletions

View file

@ -1,9 +1,14 @@
{
"name": "@strudel.cycles/transpiler",
"version": "0.5.0",
"version": "0.6.0",
"description": "Transpiler for strudel user code. Converts syntactically correct but semantically meaningless JS into evaluatable strudel code.",
"main": "index.mjs",
"publishConfig": {
"main": "dist/index.js",
"module": "dist/index.mjs"
},
"scripts": {
"build": "vite build",
"test": "vitest run"
},
"repository": {
@ -30,6 +35,7 @@
"estree-walker": "^3.0.1"
},
"devDependencies": {
"vite": "^3.2.2",
"vitest": "^0.25.8"
}
}