-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.53 KB
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
{
"name": "tnsr-client",
"version": "1.0.3",
"description": "TypeScript API client for Netgate TNSR network routers with RESTCONF support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"docs",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "bun test",
"test:watch": "bun test --watch",
"dev": "bun --watch src/index.ts",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"tnsr",
"netgate",
"restconf",
"network",
"router",
"api",
"typescript",
"yang",
"traffic-statistics",
"pbr",
"blackhole"
],
"author": "Emir Kabal <me@emirkabal.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emirkabal/tnsr-client.git"
},
"bugs": {
"url": "https://github.com/emirkabal/tnsr-client/issues"
},
"homepage": "https://github.com/emirkabal/tnsr-client#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"dependencies": {
"axios": "^1.11.0"
},
"peerDependencies": {
"typescript": "^5"
}
}