-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "uqmi-client",
"version": "1.1.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint eslint.config.mjs",
"lint:fix": "eslint eslint.config.mjs --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test": "jest",
"build": "npm run build:clean && npm run build:types && npm run build:bundle",
"build:clean": "rimraf dist && mkdir dist",
"build:typescript": "tsc",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --outDir dist",
"build:docs": "typedoc",
"build:bundle": "tsup src/index.ts --format cjs,esm --dts",
"prepublishOnly": "npm run lint && npm run build:docs && npm run build",
"release": "semantic-release"
},
"keywords": [
"uqmi",
"ssh",
"network",
"nodejs",
"modem",
"lte"
],
"author": {
"name": "Benjamin Stefan",
"email": "contact@benjamin-stefan.eu"
},
"license": "MIT",
"description": "Node.js library for managing network-related commands over SSH, specifically designed to work with UQMI-compatible devices.",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"directories": {
"lib": "./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Benjamin-Stefan/uqmi-client.git"
},
"bugs": {
"url": "https://github.com/Benjamin-Stefan/uqmi-client/issues"
},
"homepage": "https://github.com/Benjamin-Stefan/uqmi-client#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/ssh2": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.3",
"typescript": "^5.7.2"
},
"dependencies": {
"ssh2": "^1.16.0"
}
}