Skip to content

Commit

Permalink
fix output files
Browse files Browse the repository at this point in the history
  • Loading branch information
itxtoledo committed Aug 9, 2023
1 parent 2be273e commit 3e519c5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
{
"name": "@coinsamba/js-exchanges-connector",
"description": "Collection of JavaScript implementations of cryptocurrency exchange APIs",
"version": "2.0.8",
"version": "2.0.9",
"repository": "git@github.com:coinsambacom/js-exchanges-connector.git",
"author": "Gustavo <gustavo@obex.pw>",
"license": "MIT",
"private": false,
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./typings/index.d.ts",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "./typings/index.d.ts",
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"keywords": [
"exchanges",
"cryptocurrency",
"coinsamba",
"nodejs"
],
"files": [
"dist/**.js*",
"typings/**/*.ts"
"dist/**/*.ts"
],
"scripts": {
"prepare": "yarn run --silent build",
Expand All @@ -32,12 +38,6 @@
"refresh": "yarn run clean && yarn ci",
"clean": "git clean -fX .eslintcache dist/"
},
"keywords": [
"exchanges",
"cryptocurrency",
"coinsamba",
"nodejs"
],
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"composite": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "typings",
// "declarationDir": "typings",
"outDir": "dist",
"rootDir": "src",
"target": "ES2019",
Expand Down

0 comments on commit 3e519c5

Please sign in to comment.