api/package.json

22 lines
533 B
JSON
Raw Normal View History

{
"name": "versia-api",
"private": true,
2024-06-08 02:46:50 +02:00
"workspaces": ["federation", "client"],
"scripts": {
"lint": "bunx @biomejs/biome check .",
"build": "bun run build.ts",
"check": "bunx tsc -p ."
},
"devDependencies": {
2024-10-24 17:28:27 +02:00
"@biomejs/biome": "^1.9.4",
2024-11-28 11:12:28 +01:00
"@types/bun": "^1.1.14",
2025-01-02 00:44:22 +01:00
"@types/node": "^22.10.3",
2024-10-14 18:03:21 +02:00
"bun-plugin-dts": "^0.3.0"
},
"trustedDependencies": ["@biomejs/biome"],
"dependencies": {
2025-01-02 00:44:22 +01:00
"chalk": "^5.4.1",
2024-11-28 11:12:28 +01:00
"ora": "^8.1.1"
}
}