forked from osskit/monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "@osskit/monitor",
"version": "4.0.0",
"repository": {
"url": "https://github.com/osskit/monitor"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"examples_usage": "ts-node examples/usage.ts",
"examples_server": "ts-node examples/server.ts",
"lint:base": "eslint . --ext .ts",
"lint": "yarn lint:base --fix",
"format": "prettier --write '**/*.{ts,js,json}'",
"prepare": "husky install"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"prom-client": ">=14.0.1"
},
"dependencies": {
"@sindresorhus/is": "^4.6.0",
"pino": "^7.9.2"
},
"devDependencies": {
"@osskit/eslint-config": "^1.0.3",
"@osskit/prettier-config": "^0.0.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^42.0.0",
"express": "^4.17.3",
"express-prom-bundle": "^6.4.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"prom-client": "^14.0.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,js,json}": "prettier --write"
}
}