mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* ui sideloading * remove subtlecrypto import * fix parser * misc fixes * allow docker pull during compat conversion
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "@start9labs/start-sdk",
|
|
"version": "0.3.6-alpha5",
|
|
"description": "Software development kit to facilitate packaging services for StartOS",
|
|
"main": "./cjs/lib/index.js",
|
|
"types": "./cjs/lib/index.d.ts",
|
|
"module": "./mjs/lib/index.js",
|
|
"browser": "./mjs/lib/index.browser.js",
|
|
"sideEffects": true,
|
|
"typesVersion": {
|
|
">=3.1": {
|
|
"*": [
|
|
"cjs/lib/*"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "jest -c ./jest.config.js --coverage",
|
|
"buildOutput": "ts-node --project ./tsconfig-cjs.json ./lib/test/makeOutput.ts && npx prettier --write '**/*.ts'",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Start9Labs/start-sdk.git"
|
|
},
|
|
"author": "Start9 Labs",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Start9Labs/start-sdk/issues"
|
|
},
|
|
"homepage": "https://github.com/Start9Labs/start-sdk#readme",
|
|
"dependencies": {
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"lodash.merge": "^4.6.2",
|
|
"mime": "^4.0.3",
|
|
"ts-matches": "^5.5.1",
|
|
"yaml": "^2.2.2",
|
|
"@iarna/toml": "^2.2.5",
|
|
"@noble/curves": "^1.4.0",
|
|
"@noble/hashes": "^1.4.0"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": false
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.4.0",
|
|
"@types/lodash.merge": "^4.6.2",
|
|
"jest": "^29.4.3",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|