generated from crashmax-dev/node-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from crashmax-dev/tsup
feat: migrate from `microbundle` to `tsup`
- Loading branch information
Showing
20 changed files
with
664 additions
and
3,152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,51 @@ | ||
{ | ||
"name": "stenodb", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"source": "src/index.ts", | ||
"description": "✍ Easy to use local JSON database", | ||
"version": "3.3.2", | ||
"exports": { | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/index.cjs", | ||
"default": "./dist/index.esm.js" | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
} | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.esm.js", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"author": { | ||
"name": "Vitalij Ryndin", | ||
"email": "[email protected]", | ||
"url": "https://crashmax.ru" | ||
}, | ||
"license": "MIT", | ||
"homepage": "https://github.com/crashmax-dev/stenodb/packages/node#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/crashmax-dev/stenodb.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/crashmax-dev/stenodb/issues" | ||
}, | ||
"keywords": [ | ||
"db", | ||
"database", | ||
"local", | ||
"class-transformer", | ||
"JSON" | ||
], | ||
"scripts": { | ||
"dev": "microbundle watch", | ||
"build": "del-cli dist && microbundle --format esm,cjs" | ||
"dev": "pnpm build -- --watch src", | ||
"build": "tsup src/index.ts --format esm,cjs --dts --clean" | ||
}, | ||
"dependencies": { | ||
"@stenodb/browser": "workspace:3.3.1", | ||
"@stenodb/lodash": "workspace:3.3.1", | ||
"@stenodb/nest": "workspace:3.3.1", | ||
"@stenodb/node": "workspace:3.3.1" | ||
"@stenodb/browser": "workspace:3.3.2", | ||
"@stenodb/lodash": "workspace:3.3.2", | ||
"@stenodb/nest": "workspace:3.3.2", | ||
"@stenodb/node": "workspace:3.3.2" | ||
}, | ||
"engines": { | ||
"node": ">=14.16" | ||
|
Oops, something went wrong.