-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 929 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 929 Bytes
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
{
"name": "@aptero/mesh-router-agent",
"version": "1.0.0",
"description": "NSL agent that registers IP with mesh-router-backend",
"main": "dist/index.js",
"type": "module",
"private": false,
"scripts": {
"exec": "tsc && node dist/index.js",
"build": "tsc",
"start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts"
},
"dependencies": {
"dotenv": "^17.2.3",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "^22.15.29",
"@types/node-forge": "^1.3.11",
"chai": "^5.2.0",
"mocha": "11.7.5",
"tsc-watch": "^6.2.1",
"typescript": "5.9.3"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}