diff --git a/package.json b/package.json index 2ee9bb1..6302cd6 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,13 @@ { "name": "cut-abstractions", - "version": "0.1.1", + "version": "0.1.2", "description": "", - "main": "index.ts", "files": ["dist/**/*"], "exports": { - ".": "./dist/**/*" + ".": { + "types": "./dist/index.d.ts", + "require": "./dist/index.js" + } }, "scripts": { "build": "tsc", diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..fe7dcf9 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,3 @@ +export * from './base'; +export * from './processors'; +export * from './parsers'; \ No newline at end of file