-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "@sigyn/agent",
"version": "4.1.0",
"description": "Loki alerting agent",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "npm run build -- --watch",
"prepublishOnly": "npm run build",
"test": "glob -c \"tsx -r dotenv/config --test-concurrency 1 --test\" \"./test/**/*.spec.ts\"",
"test:e2e": "glob -c \"tsx -r dotenv/config --test-concurrency 1 --test\" \"./test/e2e/*.e2e-spec.ts\"",
"coverage": "c8 -r html npm test",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyUnisoft/sigyn.git",
"directory": "src/agent"
},
"bugs": {
"url": "https://github.com/MyUnisoft/sigyn/issues"
},
"homepage": "https://github.com/MyUnisoft/sigyn/blob/main/src/agent/README.md",
"files": [
"dist",
"data"
],
"keywords": [],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"dependencies": {
"@myunisoft/httpie": "^5.0.1",
"@myunisoft/loki": "^5.1.0",
"@openally/result": "^1.3.0",
"better-sqlite3": "^11.7.0",
"cron-parser": "^4.9.0",
"croner": "^9.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"ms": "^2.1.3",
"pino": "^9.6.0",
"toad-scheduler": "^3.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"is-ci": "^4.1.0",
"mockdate": "^3.0.5",
"pino-pretty": "^13.0.0",
"testcontainers": "^10.16.0"
},
"type": "module"
}