-
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.
feat: add package for nodejs basic imports
- Loading branch information
1 parent
cd40706
commit 997fbbd
Showing
7 changed files
with
65 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Drizzle-HTTP Node.js | ||
|
||
Basic packages for Node.js | ||
|
||
## Installation | ||
|
||
``` | ||
npm i @drizzle-http/nodejs | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "@drizzle-http/nodejs", | ||
"version": "0.0.1", | ||
"description": "Drizzle-HTTP default packages for Node.js", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./package.json": "./package.json" | ||
}, | ||
"scripts": { | ||
"preinstall": "tsc --build --force", | ||
"build": "tsc --build --force" | ||
}, | ||
"author": { | ||
"name": "Vitor Hugo Salgado", | ||
"url": "https://github.com/vitorsalgado" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@drizzle-http/core": "0.0.1", | ||
"@drizzle-http/logging-interceptor": "0.0.1", | ||
"@drizzle-http/undici": "0.0.1" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from '@drizzle-http/core' | ||
export * from '@drizzle-http/undici' | ||
export * from '@drizzle-http/logging-interceptor' |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "./dist" | ||
}, | ||
"references": [ | ||
{ "path": "../drizzle-http", "prepend": false }, | ||
{ "path": "../drizzle-http-undici", "prepend": false }, | ||
{ "path": "../drizzle-http-logging-interceptor", "prepend": false }, | ||
{ "path": "../../internal/test-utils", "prepend": false } | ||
], | ||
"include": ["src/**/*"] | ||
} |
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