-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 1.76 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "inibase",
"version": "1.1.13",
"type": "module",
"author": {
"name": "Karim Amahtil",
"email": "[email protected]"
},
"repository": "inicontent/inibase",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./file": "./dist/file.js",
"./utils": "./dist/utils.js",
"./utils.server": "./dist/utils.server.js"
},
"bugs": {
"url": "https://github.com/inicontent/inibase/issues"
},
"description": "A file-based & memory-efficient, serverless, ACID compliant, relational database management system",
"engines": {
"node": ">=22"
},
"files": [
"/dist"
],
"funding": "https://github.com/sponsors/inicontent",
"homepage": "https://github.com/inicontent/inibase#readme",
"keywords": [
"nosql",
"rdms",
"database",
"db",
"mongoose",
"relational",
"local",
"file",
"storage",
"json",
"sqlite",
"sql",
"supabase",
"better-sqlite",
"mongodb",
"firebase",
"postgresql",
"pocketbase"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "lefthook run pre-push -f",
"prepublish": "npx -q tsc",
"build": "npx -q tsc",
"benchmark": "./benchmark/run.js",
"test": "npx -q tsx ./tests/inibase.test.ts",
"test:utils": "npx -q tsx ./tests/utils.test.ts"
},
"bin": {
"inibase": "./dist/cli.js"
},
"types": "./dist",
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"file": [
"./dist/file.d.ts"
],
"utils": [
"./dist/utils.d.ts"
],
"utils.server": [
"./dist/utils.server.d.ts"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"lefthook": "^1.10.1",
"tinybench": "^3.0.7",
"typescript": "^5.7.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"inison": "latest",
"re2": "^1.21.4"
}
}