-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1008 Bytes
/
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": "@nmshd/connector-types",
"description": "the enmeshed connector types",
"keywords": [
"enmeshed",
"connector"
],
"homepage": "https://enmeshed.eu/integrate",
"repository": {
"type": "git",
"url": "https://github.com/nmshd/connector.git",
"directory": "/packages/types"
},
"license": "MIT",
"author": "j&s-soft AG",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"build:ci": "tsc",
"build:watch": "tsc --watch"
},
"peerDependencies": {
"@nmshd/runtime": "^6.29.1"
},
"devDependencies": {
"@js-soft/logging-abstractions": "^1.0.1",
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.9",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}