Fixing: Some getConfigs where breaking in new system (#2685)

This commit is contained in:
Jade
2024-07-26 11:19:16 -06:00
committed by GitHub
parent 8aecec0b9a
commit e0b47feb8b
10 changed files with 6083 additions and 62 deletions

View File

@@ -6,7 +6,8 @@
"scripts": {
"check": "tsc --noEmit",
"build": "prettier . '!tmp/**' --write && rm -rf dist && tsc",
"tsc": "rm -rf dist; tsc"
"tsc": "rm -rf dist; tsc",
"test": "jest -c ./jest.config.js"
},
"author": "",
"prettier": {
@@ -17,12 +18,13 @@
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@start9labs/start-sdk": "file:../sdk/dist",
"@noble/hashes": "^1.4.0",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@start9labs/start-sdk": "file:../sdk/dist",
"esbuild-plugin-resolve": "^2.0.0",
"filebrowser": "^1.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"lodash.merge": "^4.6.2",
"node-fetch": "^3.1.0",
"ts-matches": "^5.5.1",
@@ -33,8 +35,10 @@
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.65",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.13",
"prettier": "^3.2.5",
"ts-jest": "^29.2.3",
"typescript": ">5.2"
}
}