-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 973 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 973 Bytes
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
{
"name": "dotdatabase",
"version": "1.1.3",
"description": "A leightweight easy to use local json database",
"main": "dist/dotdb.js",
"types": "dist/dotdb.d.ts",
"scripts": {
"build": "npx tsc && npx tsc --module CommonJS --outDir dist/cjs"
},
"homepage": "https://github.com/NZ-Linix/dotdatabase#readme",
"bugs": {
"url": "https://github.com/NZ-Linix/dotdatabase/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NZ-Linix/dotdatabase.git"
},
"keywords": [
"database",
"db",
"dotdb",
"dot",
"dotdatabase",
"jsondb",
"local",
"localdb",
"json"
],
"author": "NZ-Linix",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"@types/node": "^22.15.2",
"tsx": "^4.19.3"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"exports": {
"import": "./dist/dotdb.js",
"require": "./dist/cjs/dotdb.js",
"types": "./dist/dotdb.d.ts"
}
}