chore: Update the types for the sdk

This commit is contained in:
J H
2024-03-14 15:18:33 -06:00
parent e87182264a
commit 45d50b12fd

View File

@@ -2,15 +2,15 @@
"name": "@start9labs/start-sdk", "name": "@start9labs/start-sdk",
"version": "0.4.0-rev0.lib0.rc8.beta10", "version": "0.4.0-rev0.lib0.rc8.beta10",
"description": "Software development kit to facilitate packaging services for StartOS", "description": "Software development kit to facilitate packaging services for StartOS",
"main": "./cjs/lib/index.js", "main": "./cjs/sdk/lib/index.js",
"types": "./cjs/lib/index.d.ts", "types": "./cjs/sdk/lib/index.d.ts",
"module": "./mjs/lib/index.js", "module": "./mjs/sdk/lib/index.js",
"sideEffects": true, "sideEffects": true,
"exports": { "exports": {
".": { ".": {
"import": "./mjs/lib/index.js", "import": "./mjs/sdk/lib/index.js",
"require": "./cjs/lib/index.js", "require": "./cjs/sdk/lib/index.js",
"types": "./cjs/lib/index.d.ts" "types": "./cjs/sdk/lib/index.d.ts"
} }
}, },
"typesVersion": { "typesVersion": {
@@ -56,4 +56,4 @@
"tsx": "^4.7.1", "tsx": "^4.7.1",
"typescript": "^5.0.4" "typescript": "^5.0.4"
} }
} }