@gjsify/example-node-cli-esbuild-plugin-deepkit 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# @gjsify/example-cli-esbuild-plugin-deepkit
|
|
2
|
+
|
|
3
|
+
This example demonstrates the usage of the Runtime TypeScript types along with the reflection system of [@deepkit/types](https://deepkit.io/library/type) in your project, using esbuild as your preferred bundler. The only requirement is to add @gjsify/esbuild-plugin-deepkit to you esbuild plugins.
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gjsify/example-node-cli-esbuild-plugin-deepkit",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"clear": "rm -rf dist",
|
|
12
|
+
"check": "tsc --noEmit",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"build": "node esbuild.mjs",
|
|
15
|
+
"test": "yarn start"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@deepkit/core": "^1.0.19",
|
|
19
|
+
"@deepkit/type": "^1.0.19",
|
|
20
|
+
"@gjsify/esbuild-plugin-deepkit": "^0.1.3",
|
|
21
|
+
"typescript": "^6.0.2"
|
|
22
|
+
},
|
|
23
|
+
"author": "Pascal Garber <pascal@artandcode.studio>",
|
|
24
|
+
"license": "MIT"
|
|
25
|
+
}
|