File size: 726 Bytes
c6302b1 a1ab21c c6302b1 a1ab21c 7b8fb69 c6302b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | {
"name": "@xtap-pool/setup",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"xtap-pool-setup": "dist/src/main.js"
},
"scripts": {
"build": "tsc --build ../shared tsconfig.json",
"dev": "npm run build && npm run start",
"start": "node dist/src/main.js",
"format": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"dry": "cd .. && slophammer-ts dry .",
"mutate": "stryker run stryker.conf.json"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@huggingface/hub": "^2.13.2",
"@xtap-pool/shared": "*",
"zod": "^4.4.3"
}
}
|