@flutchai/flutch-sdk 0.1.3 → 0.1.4
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 +2 -2
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -304,9 +304,9 @@ npm run lint
|
|
|
304
304
|
|
|
305
305
|
## Links
|
|
306
306
|
|
|
307
|
-
- [GitHub Repository](https://github.com/flutchai/
|
|
307
|
+
- [GitHub Repository](https://github.com/flutchai/node-sdk)
|
|
308
308
|
- [NPM Package](https://www.npmjs.com/package/@flutchai/flutch-sdk)
|
|
309
|
-
- [Issues](https://github.com/flutchai/
|
|
309
|
+
- [Issues](https://github.com/flutchai/node-sdk/issues)
|
|
310
310
|
|
|
311
311
|
## License
|
|
312
312
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flutchai/flutch-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Base infrastructure package for building graph microservices - core interfaces, types, utilities, and execution engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
"build": "npx tsc",
|
|
34
34
|
"test": "jest",
|
|
35
35
|
"lint": "eslint .",
|
|
36
|
+
"format": "prettier --write .",
|
|
37
|
+
"format:check": "prettier --check .",
|
|
36
38
|
"prepublishOnly": "npm run build"
|
|
37
39
|
},
|
|
38
40
|
"dependencies": {
|
|
@@ -63,13 +65,18 @@
|
|
|
63
65
|
"zod": "^3.22.4"
|
|
64
66
|
},
|
|
65
67
|
"devDependencies": {
|
|
68
|
+
"@jest/globals": "^29.0.0",
|
|
66
69
|
"@types/compression": "^1.7.2",
|
|
67
70
|
"@types/express": "^4.17.17",
|
|
68
71
|
"@types/ioredis-mock": "^8",
|
|
72
|
+
"@types/jest": "^29.0.0",
|
|
69
73
|
"@types/json-schema": "^7.0.15",
|
|
70
74
|
"@types/node": "^20.3.1",
|
|
71
75
|
"ioredis-mock": "^8.9.0",
|
|
76
|
+
"jest": "^29.0.0",
|
|
72
77
|
"json-schema": "^0.4.0",
|
|
78
|
+
"prettier": "^3.0.0",
|
|
79
|
+
"ts-jest": "^29.0.0",
|
|
73
80
|
"typescript": "^5.1.3"
|
|
74
81
|
},
|
|
75
82
|
"packageManager": "yarn@4.5.3"
|