Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
reeceyang committed Jun 1, 2024
0 parents commit 7797ab7
Show file tree
Hide file tree
Showing 7 changed files with 1,533 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
lib
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "convex-schema-mermaid",
"version": "0.1.0",
"description": "Generate a Mermaid flowchart from a Convex schema",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "vitest",
"build": "tsc --project tsconfig.build.json",
"publish": "tsc --project tsconfig.build.json ; npm publish access public"
},
"keywords": [
"convex",
"mermaid"
],
"author": "reeceyang",
"license": "ISC",
"dependencies": {
"convex": "^1.12.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"ts-node": "^10.9.2",
"vitest": "^1.6.0"
}
}
Loading

0 comments on commit 7797ab7

Please sign in to comment.