-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "beeorm",
"version": "0.0.5",
"main": "main.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [ "backend",
"typescript", "ORM", "MySQL"],
"author": "Anchel Ascaso Castro",
"license": "MIT",
"description": "BeeORM is a TypeScript-based ORM that I built as a side project, inspired by Java's JPA. One day, I thought it would be a great way to deepen my understanding of TypeScript by trying to create something similar.\n\nThis project is not meant to compete with or improve existing TypeScript ORMs—it's purely a learning experience. BeeORM uses decorators to define entities and properties, making database interactions more intuitive. It currently supports MySQL and focuses on entity registration,metadata handling, and query execution.",
"dependencies": {
"mysql2": "^3.12.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/node": "^22.13.2"
}
}