Files
ob248.com/cli/package.json
2026-02-02 19:25:41 +00:00

29 lines
618 B
JSON

{
"name": "ob248.com",
"module": "main.tsx",
"type": "module",
"private": true,
"scripts": {
"dev": "bun main.tsx",
"build": "bun build --compile --outfile ob248 main.tsx",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"fmt": "biome format .",
"fmt:fix": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.77",
"@opentui/react": "^0.1.77",
"react": "^19.2.4"
}
}