-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"dependencies": {
"@ffflorian/api-client": "2.5.3"
},
"description": "An updown.io API client",
"devDependencies": {
"@types/node": "~26",
"nock": "14.0.17",
"rimraf": "6.1.3",
"typedoc": "0.28.20",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"engines": {
"node": ">= 21"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"api",
"api-client",
"updown.io",
"updown",
"updownio"
],
"license": "GPL-3.0",
"name": "updown.io",
"readme": "https://github.com/ffflorian/api-clients#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ffflorian/api-clients.git"
},
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc -p tsconfig.build.json",
"build:docs": "typedoc --tsconfig tsconfig.build.json --options ../../typedoc.json --out ../../docs/packages/updown.io src/index.ts",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"test": "vitest"
},
"version": "3.5.0"
}