eth-graph-query 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ <div align="center">
2
+ Eth graph query
3
+ </div>
4
+
5
+ ### Installation
6
+
7
+ ### Usage
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare function greet(name: string): string;
package/lib/index.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.greet = void 0;
4
+ function greet(name) {
5
+ return `Hello ${name}`;
6
+ }
7
+ exports.greet = greet;
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "eth-graph-query",
3
+ "version": "1.0.0",
4
+ "description": "simple package for create query command to graph database in ethereum",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "files": [
8
+ "lib"
9
+ ],
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "prepare": "npm run build"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/phamhongphuc1999/eth-graph-query.git"
17
+ },
18
+ "keywords": [
19
+ "graph"
20
+ ],
21
+ "author": "phamhongphuc1999",
22
+ "license": "ISC",
23
+ "bugs": {
24
+ "url": "https://github.com/phamhongphuc1999/eth-graph-query/issues"
25
+ },
26
+ "homepage": "https://github.com/phamhongphuc1999/eth-graph-query#readme",
27
+ "devDependencies": {
28
+ "typescript": "^5.1.3"
29
+ }
30
+ }