Expose config options for cleartext stratum port

This commit is contained in:
2026-08-01 06:31:15 +03:00
commit a2ae800a19
36 changed files with 4585 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "kamado-pool-startos",
"scripts": {
"build": "rm -rf ./javascript && ncc build startos/index.ts -o ./javascript",
"prettier": "prettier --write startos",
"check": "tsc --noEmit"
},
"dependencies": {
"@start9labs/start-sdk": "2.0.5",
"bitcoin-core-startos": "github:Start9Labs/bitcoin-core-startos#next/28.x"
},
"devDependencies": {
"@types/node": "^22.17.1",
"@vercel/ncc": "^0.38.3",
"prettier": "^3.6.2",
"typescript": "^6.0.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}