-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 806 Bytes
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
29
{
"name": "frigate",
"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.9",
"bitcoin-core-startos": "github:Start9Labs/bitcoin-core-startos#next/28.x",
"electrs-startos": "github:Start9-Community/electrs-startos#next",
"fulcrum-startos": "github:Start9Labs/fulcrum-startos#next"
},
"devDependencies": {
"@types/node": "^22.19.17",
"@vercel/ncc": "^0.38.4",
"prettier": "^3.8.2",
"typescript": "^6.0.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"overrides": {
"@start9labs/start-sdk": "$@start9labs/start-sdk"
}
}