emdy/package.json
2025-04-02 10:33:29 -04:00

28 lines
524 B
JSON

{
"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"
}
}