chore: scaffold node mvp project structure and test scripts

This commit is contained in:
Codex
2026-02-18 12:30:43 +00:00
parent 5ebaf3ad5c
commit 6f091e32d3
2 changed files with 19 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "xartaudio",
"version": "0.1.0",
"description": "X article to audio MVP",
"main": "src/server.js",
"scripts": {
"dev": "node --watch src/server.js",
"start": "node src/server.js",
"test": "node --test"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs"
}