-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.77 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": "@nmshd/connector-tui",
"version": "2.1.0",
"repository": "github:nmshd/connector-tui",
"license": "MIT",
"author": "j&s-soft GmbH",
"type": "module",
"main": "index.js",
"bin": {
"connector-tui": "dist/index.js",
"connector_tui": "dist/index.js",
"ctui": "dist/index.js"
},
"files": [
"index.js",
"dist",
"__assets__",
".env.example"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:tsc && npm run lint:prettier && npm run lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --ext .ts ./src",
"lint:prettier": "prettier --check ./src",
"start": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' src/index.ts",
"test": "echo 'no test specified'",
"watch": "node --watch --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' src/index.ts"
},
"dependencies": {
"@nmshd/connector-sdk": "^6.7.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.7",
"luxon": "^3.5.0",
"prompts": "^2.4.2",
"qrcode-terminal": "^0.12.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^1.6.13",
"@js-soft/license-check": "^1.0.9",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"@types/qrcode-terminal": "^0.12.2",
"@types/yargs": "^17.0.33",
"eslint": "^8.57.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=19.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}