-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "aurora-orm",
"license": "MIT",
"version": "2.59.3",
"author": "Amir Abdullin",
"description": "Near-zero runtime ORM and migration tool for PostgreSQL with TypeScript and Node.js",
"types": "index.d.ts",
"main": "index.js",
"type": "module",
"bin": {
"aurora-orm": "bin/aurora-orm.js"
},
"scripts": {
"lint": "eslint .",
"test": "vitest run",
"build": "tsx ./scripts/build.ts",
"release": "tsx ./scripts/release.ts",
"benchmark": "tsx ./scripts/benchmark/index.ts"
},
"peerDependencies": {
"tsx": ">=4"
},
"peerDependenciesMeta": {
"tsx": {
"optional": true
}
},
"dependencies": {
"pg": "8.13.1",
"postgres": "3.4.5"
},
"devDependencies": {
"@faker-js/faker": "9.3.0",
"@types/node": "22.10.5",
"@types/pg": "8.11.10",
"eslint": "9.17.0",
"eslint-plugin-perfectionist": "4.6.0",
"puppeteer": "24.0.0",
"reflect-metadata": "0.2.2",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typeorm": "0.3.20",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"vitest": "2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fyapy/aurora-orm.git"
}
}