mango-orm 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/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "mango-orm",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "A lightweight, type-safe MySQL ORM for Node.js and TypeScript",
6
+ "main": "dist/src/mango.js",
7
+ "types": "dist/src/mango.d.ts",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "dev": "tsc --watch",
11
+ "test": "tsc && node dist/test/test.js",
12
+ "test:ops": "tsc && node dist/test/test-operations.js",
13
+ "prepublishOnly": "pnpm build"
14
+ },
15
+ "files": [
16
+ "dist/src",
17
+ "README.md"
18
+ ],
19
+ "keywords": [
20
+ "mysql",
21
+ "orm",
22
+ "typescript",
23
+ "database",
24
+ "sql",
25
+ "type-safe",
26
+ "query-builder"
27
+ ],
28
+ "author": "Siddharth Karn siddharth2062.karn@gmail.com (https://github.com/devSiddharthKarn)",
29
+ "license": "ISC",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/devSiddharthKarn/Mango.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/devSiddharthKarn/Mango/issues"
36
+ },
37
+ "homepage": "https://github.com/devSiddharthKarn/Mango#readme",
38
+ "packageManager": "pnpm@10.25.0",
39
+ "dependencies": {
40
+ "@types/mysql": "^2.15.27",
41
+ "mysql": "^2.18.1"
42
+ },
43
+ "devDependencies": {
44
+ "typescript": "^5.0.0"
45
+ },
46
+ "engines": {
47
+ "node": ">=14.0.0"
48
+ }
49
+ }