mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* import marketplac preview for sideload * fix: improve state service (#2977) * fix: fix sideload DI * fix: update Angular * fix: cleanup * fix: fix version selection * Bump node version to fix build for Angular * misc fixes - update node to v22 - fix chroot-and-upgrade access to prune-images - don't self-migrate legacy packages - #2985 - move dataVersion to volume folder - remove "instructions.md" from s9pk - add "docsUrl" to manifest * version bump * include flavor when clicking view listing from updates tab * closes #2980 * fix: fix select button * bring back ssh keys * fix: drop 'portal' from all routes * fix: implement longtap action to select table rows * fix description for ssh page * replace instructions with docsLink and refactor marketplace preview * delete unused translations * fix patchdb diffing algorithm * continue refactor of marketplace lib show components * Booting StartOS instead of Setting up your server on init * misc fixes - closes #2990 - closes #2987 * fix build * docsUrl and clickable service headers * don't cleanup after update until new service install succeeds * update types * misc fixes * beta.35 * sdkversion, githash for sideload, correct logs for init, startos pubkey display * bring back reboot button on install * misc fixes * beta.36 * better handling of setup and init for websocket errors * reopen init and setup logs even on graceful closure * better logging, misc fixes * fix build * dont let package stats hang * dont show docsurl in marketplace if no docsurl * re-add needs-config * show error if init fails, shorten hover state on header icons * fix operator precedemce --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: Mariusz Kogen <k0gen@pm.me>
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@start9labs/start-sdk",
|
|
"version": "0.4.0-beta.36",
|
|
"description": "Software development kit to facilitate packaging services for StartOS",
|
|
"main": "./package/lib/index.js",
|
|
"types": "./package/lib/index.d.ts",
|
|
"sideEffects": true,
|
|
"typesVersion": {
|
|
">=3.1": {
|
|
"*": [
|
|
"package/lib/*",
|
|
"base/lib/*"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && tsc --project tsconfig-cjs.json && copyfiles package.json dist",
|
|
"test": "jest -c ./jest.config.js --coverage",
|
|
"buildOutput": "ts-node ./lib/test/makeOutput.ts && npx prettier --write \"**/*.ts\"",
|
|
"check": "tsc --noEmit",
|
|
"tsc": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Start9Labs/start-os.git"
|
|
},
|
|
"author": "Start9 Labs",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Start9Labs/start-os/issues"
|
|
},
|
|
"homepage": "https://github.com/Start9Labs/start-os#readme",
|
|
"dependencies": {
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"mime": "^4.0.7",
|
|
"ts-matches": "^6.3.2",
|
|
"yaml": "^2.7.1",
|
|
"deep-equality-data-structures": "^2.0.0",
|
|
"ini": "^5.0.0",
|
|
"@types/ini": "^4.1.1",
|
|
"@iarna/toml": "^3.0.0",
|
|
"@noble/curves": "^1.8.2",
|
|
"@noble/hashes": "^1.7.2"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": false
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.4.0",
|
|
"copyfiles": "^2.4.1",
|
|
"jest": "^29.4.3",
|
|
"peggy": "^3.0.2",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"ts-pegjs": "^4.2.1",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|