-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (35 loc) · 1.45 KB
/
package.json
File metadata and controls
41 lines (35 loc) · 1.45 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
{
"name": "telemetry2"
, "version": "0.1.0"
, "description": "The CCL telemetry endpoint (2nd generation)"
, "homepage": "https://github.com/NetLogo/telemetry2"
, "repository": { "type": "git", "url": "git+https://github.com/NetLogo/telemetry2.git" }
, "bugs": { "url": "https://github.com/NetLogo/telemetry2/issues" }
, "author": "TheBizzle"
, "license": "GPL-2"
, "private": true
, "type": "module"
, "engines" : { "npm": "~11.8.0"
, "node": "~24.13.1"
}
, "scripts": { "build": "npx tsc"
, "ci-lint": "npx eslint ."
, "lint": "npx tsc && npx eslint ."
, "run": "npx node dist/src/controller.js"
, "start": "npx tsc && npx node dist/src/controller.js"
, "test": "echo \"TODO: Testing\" && exit 1"
}
, "dependencies": { "dotenv": "~16.4.0"
, "long": "~5.3.0"
, "pg": "~8.17.0"
, "protobufjs": "~7.5.0"
, "uuid": "~13.0.0"
}
, "devDependencies": { "@types/node": "~24.1.0"
, "@types/pg": "~8.11.0"
, "eslint": "~9.39.0"
, "ts-node": "~10.9.0"
, "typescript": "~5.5.0"
, "typescript-eslint": "~8.53.0"
}
}