@waves/ts-types
Advanced tools
Comparing version 0.1.0-beta-2 to 0.2.0-beta-1
{ | ||
"name": "@waves/ts-types", | ||
"version": "0.1.0-beta-2", | ||
"version": "0.2.0-beta-1", | ||
"main": "dist/index.js", | ||
"types": "index.ts" | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepublish": "tsc", | ||
"postversion": "npm publish", | ||
"postpublish": "git push", | ||
"prepare": "tsc" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^3.2.4" | ||
} | ||
} |
@@ -12,3 +12,3 @@ import { | ||
TRANSACTION_TYPE | ||
} from '..'; | ||
} from '../src'; | ||
@@ -15,0 +15,0 @@ export namespace api { |
export * from './sign'; | ||
export * from './api'; | ||
import { DATA_FIELD_TYPE, TRANSACTION_TYPE } from '..'; | ||
import { DATA_FIELD_TYPE, TRANSACTION_TYPE } from '../src'; | ||
@@ -5,0 +5,0 @@ |
import { | ||
IAliasTransaction, | ||
IBurnTransaction, | ||
ICancelLeaseTransaction, | ||
IDataTransaction, | ||
IIssueTransaction, | ||
ILeaseTransaction, | ||
IMassTransferItem, | ||
IMassTransferTransaction, | ||
IReissueTransaction, | ||
ISetScriptTransaction, | ||
ISponsorship, | ||
ITransaction, | ||
ITransferTransaction, | ||
IWithChainId, | ||
IWithId, | ||
@@ -22,3 +10,3 @@ IWithProofs, | ||
TRANSACTION_TYPE | ||
} from '..'; | ||
} from '../src'; | ||
@@ -25,0 +13,0 @@ export namespace sign { |
@@ -5,7 +5,13 @@ { | ||
"module": "commonjs", | ||
"declaration": false, | ||
"outDir": "dist/", | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"outDir": "dist", | ||
"lib": ["es2017"] | ||
} | ||
}, | ||
"files": [ | ||
"src/index.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"dist" | ||
] | ||
} |
16870
8
499
1