pulso 0.0.1

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.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +2 -0
  3. package/package.json +21 -0
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ /** Pulso — An extensible microservice platform for plugin-based applications. */
2
+ export {};
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ /** Pulso — An extensible microservice platform for plugin-based applications. */
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "pulso",
3
+ "version": "0.0.1",
4
+ "description": "Pulso — An extensible microservice platform for plugin-based applications",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "license": "Apache-2.0",
8
+ "author": "JonesHong",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/JonesHong/pulso"
12
+ },
13
+ "homepage": "https://github.com/JonesHong/pulso",
14
+ "keywords": [
15
+ "microservice",
16
+ "platform",
17
+ "plugin",
18
+ "fastapi",
19
+ "react"
20
+ ]
21
+ }