-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 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
{
"name": "opensensemap-client",
"description": "The library allows and improves type-based working with the openSenseMap API",
"version": "1.8.2",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"repository": "https://github.com/JulianWowra/opensensemap-client.git",
"homepage": "https://julianwowra.github.io/opensensemap-client/",
"author": "Julian Wowra <development@julianwowra.de>",
"license": "MIT",
"packageManager": "pnpm@10.30.0",
"dependencies": {
"axios": "^1.13.5",
"superstruct": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.1",
"tsup": "^8.5.1",
"typedoc": "~0.28.17",
"typedoc-github-theme": "~0.4.0",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0"
},
"scripts": {
"build": "pnpm run build:lib && pnpm build:docs",
"build:lib": "tsup",
"build:docs": "typedoc src --plugin typedoc-github-theme --plugin typedoc-plugin-missing-exports",
"dev": "tsup --watch",
"lint": "pnpm lint:format && pnpm lint:code",
"lint:format": "prettier --check .",
"lint:code": "eslint ."
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"eslint"
]
},
"keywords": [
"opensensemap",
"open sense map"
]
}