Initialize package.json with project metadata and scripts

This commit is contained in:
Mario Lurig
2025-12-10 21:44:08 -07:00
committed by GitHub
parent 567fafbe8b
commit 4deff31fc9
+17
View File
@@ -0,0 +1,17 @@
{
"name": "trmnl-form-builder",
"version": "0.1.2",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"vitest": "^1.0.0",
"@vitest/ui": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0",
"jsdom": "^23.0.0"
}
}