-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "opensensemap-client",
"description": "The library allows and improves type-based working with the openSenseMap API",
"version": "1.7.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/KillerJulian/opensensemap-client",
"homepage": "https://killerjulian.github.io/opensensemap-client/",
"author": "KillerJulian <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^16.18.65",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"prettier": "3.1.0",
"typescript": "^5.3.2",
"typedoc": "~0.25.3"
},
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:lib": "tsc",
"build:docs": "typedoc --entryPoints src/index.ts --out docs --excludePrivate --customCss ./typedoc.css",
"lint": "yarn lint:format && yarn lint:code",
"lint:format": "prettier --check .",
"lint:code": "eslint src --ext .ts",
"prepack": "yarn build:lib"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"opensensemap",
"open sense map"
]
}