-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.47 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
{
"name": "@openally/loki",
"version": "7.0.2",
"description": "Node.js Grafana Loki SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"directories": {
"test": "test"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "eslint src test",
"prepublishOnly": "npm run build",
"test": "node --test ./test/**/*.spec.ts",
"coverage": "c8 -r html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAlly/loki.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"keywords": [
"grafana",
"loki",
"sdk"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"devDependencies": {
"@openally/config.eslint": "2.2.0",
"@openally/config.typescript": "^1.0.3",
"@types/ms": "2.1.0",
"@types/node": "25.5.0",
"c8": "^11.0.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@openally/auto-url": "^1.0.1",
"@openally/httpie": "1.1.2",
"@sigyn/logql": "^2.2.0",
"@sigyn/pattern": "^1.1.0",
"dayjs": "^1.11.10",
"ms": "^2.1.3"
}
}