-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@nuvix/db",
"version": "0.2.5",
"description": "Modular and performant open source database library for Nuvix, with internal complexity abstracted from developers.",
"license": "BSD-3-Clause",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"nuvix-db": "dist/cli/generate-types.js"
},
"scripts": {
"build": "tsup",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "rm -rf dist && npm run build && npm run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"generate-types": "node dist/cli/generate-types.js",
"types:init": "node dist/cli/generate-types.js --init",
"types:watch": "node dist/cli/generate-types.js --watch",
"format": "prettier --write ."
},
"dependencies": {
"chalk": "^5.5.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Nuvix-Tech/database.git"
},
"devDependencies": {
"@nuvix/cache": "^1.0.3-alpha.1",
"@types/node": "^24.1.0",
"@types/pg": "^8.15.5",
"pg": "^8.16.3",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.17"
},
"keywords": [
"nuvix",
"database",
"typescript",
"orm",
"query-builder",
"postgresql",
"modular",
"validation",
"pino"
]
}