New:Socket for Asana Is Now Available.Learn more
Sign In

@getbioflow/sdk

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getbioflow/sdk - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
0.1.0
to
0.1.1
+26
-31
package.json
{
"name": "@getbioflow/sdk",
"version": "0.1.0",
"version": "0.1.1",
"description": "Official TypeScript SDK for the BioFlow public API (https://app.getbioflow.com/v1)",

@@ -12,23 +12,16 @@ "license": "MIT",

"exports": {
".": "./src/index.ts",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
}
"access": "public"
},

@@ -57,2 +50,12 @@ "files": [

],
"devDependencies": {
"@types/node": "^22",
"eslint": "^9.36.0",
"openapi-typescript": "7.13.0",
"tsup": "8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2",
"@bioflow/eslint-config": "0.1.0",
"@bioflow/typescript-config": "0.1.0"
},
"scripts": {

@@ -62,16 +65,8 @@ "build": "tsup",

"lint": "eslint src --max-warnings=0",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"typecheck": "tsc --project tsconfig.json"
},
"devDependencies": {
"@bioflow/eslint-config": "workspace:*",
"@bioflow/typescript-config": "workspace:*",
"@types/node": "^22",
"eslint": "^9.36.0",
"openapi-typescript": "7.13.0",
"tsup": "8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
}