-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 978 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 978 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
{
"name": "ts-fp-di-mikroorm",
"version": "1.0.65",
"description": "Persist ts-fp-di State as MikroORM Entities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/ts-fp-di-mikroorm.git"
},
"keywords": [
"ts-fp-di",
"mikroorm",
"mikro",
"orm"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test dist/test.js",
"test:dev": "node -r ts-node/register/transpile-only test.ts"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"devDependencies": {
"@mikro-orm/better-sqlite": "^6.3.10",
"@types/node": "^22.6.1",
"fp-ts": "^2.16.9",
"ts-node": "^10.9.2",
"typescript": "5.6.2"
},
"peerDependencies": {
"@mikro-orm/core": "^6.3.10",
"ts-fp-di": "^0.20.1"
}
}