-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "unsql",
"version": "2.5.3",
"description": "UnSQL can be defined as a light weight schemaless ORM. It provides clean and yet extensive interface to interact with MySQL Databases without getting into the complexities. It provides dynamic query generation through easy to understand Javascript based methods and data types, while structuring the actual sql in the background for you.",
"keywords": [
"unsql",
"UnSQL",
"sql",
"database",
"mysql"
],
"main": "unsql.js",
"types": "types/unsql.d.ts",
"author": "Siddharth Tiwari <dev.unsql@gmail.com>",
"contributors": [
"Siddharth Tiwari <dev.unsql@gmail.com>"
],
"files": [
"helpers/",
"defs/",
"unsql.js",
"legacy.js",
"types/"
],
"exports": {
"./legacy": "./legacy.js",
".": {
"types": "./types/unsql.d.ts",
"default": "./unsql.js"
},
"./next": "./unsql.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siddharthtiwari-03/UnSQL.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/siddharthtiwari-03/UnSQL/issues"
},
"homepage": "https://github.com/siddharthtiwari-03/UnSQL#readme",
"devDependencies": {
"@types/node": "^25.5.0",
"eslint": "^9.38.0",
"typescript": "^5.9.3"
}
}