Skip to content

Commit

Permalink
Fix package json
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuslipp committed Jul 8, 2024
1 parent c7da372 commit 3996edb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 29 deletions.
23 changes: 5 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,19 @@
{
"name": "@mixedbread-ai/sdk",
"version": "2.2.8",
"version": "2.2.9",
"license": "Apache-2.0",
"description": "SDK for mixedbread.ai",
"author": "mixedbread.ai",
"repository": {
"type": "git",
"url": "https://github.com/mixedbread-ai/typescript-sdk.git"
},
"main": "./dist/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"build": "tsc && tsc -p tsconfig.esm.json",
"prepack": "npm run build"
"build": "tsc",
"prepack": "cp -rv dist/. ."
},
"dependencies": {
"form-data": "4.0.0",
Expand Down
7 changes: 0 additions & 7 deletions tsconfig.esm.json

This file was deleted.

5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"noUnusedParameters": true,
"outDir": "dist",
"rootDir": "src",
"baseUrl": "src"
},
"include": [
"src"
],
"include": ["src"],
"exclude": []
}

0 comments on commit 3996edb

Please sign in to comment.