mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* build multi-arch s9pks * remove images incrementally * wip * prevent rebuild * fix sdk makefile * fix hanging on uninstall * fix build * fix build * fix build * fix build (for real this time) * fix git hash computation
38 lines
925 B
JSON
38 lines
925 B
JSON
{
|
|
"name": "container-runtime",
|
|
"version": "0.0.0",
|
|
"description": "We want to be the sdk intermitent for the system",
|
|
"module": "./index.js",
|
|
"scripts": {
|
|
"check": "tsc --noEmit",
|
|
"build": "prettier . '!tmp/**' --write && rm -rf dist && tsc",
|
|
"tsc": "rm -rf dist; tsc"
|
|
},
|
|
"author": "",
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": false
|
|
},
|
|
"dependencies": {
|
|
"@iarna/toml": "^2.2.5",
|
|
"@start9labs/start-sdk": "file:../sdk/dist",
|
|
"esbuild-plugin-resolve": "^2.0.0",
|
|
"filebrowser": "^1.0.0",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"node-fetch": "^3.1.0",
|
|
"ts-matches": "^5.4.1",
|
|
"tslib": "^2.5.3",
|
|
"typescript": "^5.1.3",
|
|
"yaml": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@swc/cli": "^0.1.62",
|
|
"@swc/core": "^1.3.65",
|
|
"@types/node": "^20.11.13",
|
|
"prettier": "^3.2.5",
|
|
"typescript": ">5.2"
|
|
}
|
|
}
|