Initial commit

This commit is contained in:
Endeavorance 2025-04-02 10:33:16 -04:00
commit c75752b1b7
10 changed files with 387 additions and 0 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "@endeavorance/emdy",
"version": "1.0.0",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"yaml": "^2.7.1"
},
"scripts": {
"build": "bun run ./build.ts && tsc",
"lint": "bunx --bun biome check --fix"
}
}