-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "@lordfokas/magic-orm",
"type": "module",
"version": "3.0.0-alpha.4",
"author": "LordFokas",
"license": "MIT",
"description": "A class-based ORM in TypeScript. Unorthodox and extremely opinionated, made to fit my specific use cases.",
"repository": "https://github.com/LordFokas/magic-orm",
"main": "dist/index.js",
"keywords": [
"node",
"nodejs",
"typescript",
"orm",
"postgres",
"postgresql",
"pg"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.json",
"prebuild-bin": "rm -rf ./bin",
"build-bin": "tsc -p ./tsconfig-bin.json",
"prepublishOnly": "npm run build && npm run build-bin"
},
"bin": {
"magic-orm": "bin/magic-orm.js"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/pg": "^8.10.9",
"@types/pg-pool": "^2.0.6",
"@types/uuid": "^9.0.7"
},
"dependencies": {
"@lordfokas/loggamus": "^2.0.1",
"commander": "^11.1.0",
"pg": "^8.11.3",
"uuid": "^9.0.1"
}
}