From c43224ed4aecfa72ea8c9809fa461adaf8cc8bb4 Mon Sep 17 00:00:00 2001 From: xief <1789784602@qq.com> Date: Tue, 24 Jun 2025 14:21:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=89=93=E5=8C=85=E5=BC=95?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 8 +++++--- src/index.ts | 3 +++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 src/index.ts 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