-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.78 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
71
72
73
74
{
"name": "@semocodev/fastify-typeorm",
"version": "0.1.1",
"description": "Fastify v5 plugin for TypeORM 1.x — DataSource API, multi-namespace, full TypeScript support",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --coverage --config jest.config.mjs",
"test:watch": "jest --watch --config jest.config.mjs",
"lint": "biome lint src test",
"format": "biome format --write src test",
"check": "biome check src test",
"prepublishOnly": "npm run build && npm run check && npm test"
},
"keywords": [
"fastify",
"fastify-plugin",
"typeorm",
"datasource",
"postgresql",
"mysql",
"sqlite",
"orm",
"database",
"plugin"
],
"author": "semocodev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/semocodev/fastify-typeorm.git"
},
"bugs": {
"url": "https://github.com/semocodev/fastify-typeorm/issues"
},
"homepage": "https://github.com/semocodev/fastify-typeorm#readme",
"peerDependencies": {
"fastify": ">=5.0.0",
"typeorm": ">=1.0.0"
},
"dependencies": {
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"better-sqlite3": "^12.0.0",
"fastify": "^5.8.0",
"jest": "^30.4.2",
"reflect-metadata": "^0.2.0",
"ts-jest": "^29.3.0",
"typeorm": "^1.0.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=22.0.0"
}
}