feat: solution for 'Повторный экзамен: Граф с рефлексией и доработкой'

This commit is contained in:
2026-07-01 16:26:13 +03:00
parent c776326204
commit 9cf3d81476
6 changed files with 324 additions and 309 deletions
+10 -7
View File
@@ -1,17 +1,20 @@
{
"name": "graph-with-reflection-and-rewrite",
"name": "graph-reflection-refinement",
"version": "1.0.0",
"description": "A simple graph implementation that includes Reflection and Rewrite node types.",
"description": "A simple graph implementation supporting self-referential edges, reflection, and refinement.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js"
"test": "jest"
},
"keywords": [
"graph",
"reflection",
"rewrite",
"nodejs"
"refinement",
"self-referential"
],
"author": "Your Name",
"license": "MIT"
"author": "Student",
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0"
}
}