-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
52
53
54
55
56
57
58
59
{
"name": "@furvester/upstream-sync",
"version": "1.1.0",
"description": "Sync from upstream via RabbitMQ",
"type": "module",
"author": "Ben Scholzen 'DASPRiD'",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/furvester/upstream-sync.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"format": "biome format . --write",
"check": "biome check . --apply"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@mikro-orm/postgresql": "^6.3.13",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.7",
"jsonapi-zod-query": "^2.1.1",
"lefthook": "^1.6.10",
"logforth": "^1.2.2",
"rabbitmq-client": "^5.0.0",
"typescript": "^5.4.5",
"zod": "^3.23.4"
},
"peerDependencies": {
"@mikro-orm/postgresql": "^6.3.13",
"jsonapi-zod-query": "^2.1.1",
"logforth": "^1.2.2",
"rabbitmq-client": "^5.0.0",
"zod": "^3.22.4"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"dependencies": {
"async-mutex": "^0.5.0"
}
}