-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "@nmshd/connector-sdk",
"description": "the enmeshed connector sdk",
"keywords": [
"enmeshed",
"connector",
"rest"
],
"homepage": "https://enmeshed.eu/integrate/connector-sdks#typescript-sdk",
"repository": {
"type": "git",
"url": "https://github.com/nmshd/connector.git",
"directory": "/packages/sdk"
},
"license": "MIT",
"author": "j&s-soft AG",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"_examples",
"schemas.json"
],
"scripts": {
"build": "tsc && npm run build:schemas",
"build:watch": "tsc --watch",
"build:ci": "npm run build",
"build:schemas": "npx ts-json-schema-generator --path './src/types/**/*.ts' -o schemas.json --id https://enmeshed.eu/schemas/connector-api --tsconfig ./tsconfig.json",
"build:schemas:watch": "npx nodemon -e ts -w 'src/types' --exec 'npm run build:schemas'"
},
"dependencies": {
"@nmshd/content": "6.29.1",
"axios": "^1.8.1",
"form-data": "^4.0.2",
"qs": "^6.14.0"
},
"devDependencies": {
"@types/qs": "^6.9.18",
"ts-json-schema-generator": "^2.3.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}