Build lib/channels with ts-up

This commit is contained in:
B2Y4N 2022-08-08 00:39:05 +08:00 committed by GitHub
parent c8bcbeb510
commit 33f6f1908c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,9 +20,17 @@
},
"license": "MIT",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
@ -31,7 +39,7 @@
],
"scripts": {
"check": "tsc --noEmit",
"prepare": "node ../../../scripts/prepare.js"
"prepare": "esrun ../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"core-js": "^3.8.2",
@ -44,5 +52,10 @@
"publishConfig": {
"access": "public"
},
"bundler": {
"entries": [
"./src/index.ts",
]
},
"gitHead": "bd59f1eef0f644175abdb0d9873ed0553f431f53"
}