-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "netz-ooe-api-client",
"version": "1.1.0",
"description": "Unofficial node.js API client for Austrian grid operator Netz OÖ.",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/app.js",
"build": "tsdown src/index.ts --out-dir dist --format cjs,esm",
"prepublish": "pnpm run build && cp package.json dist/package.json",
"test": "vitest run"
},
"keywords": [
"netzoberoesterreich",
"smartmeter",
"energy",
"powergrid"
],
"author": "Martin Schwarz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrtnsch/netz-ooe-api-client"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/tough-cookie": "^4.0.5",
"prettier": "^3.8.4",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"dependencies": {
"axios": "^1.17.0",
"axios-cookiejar-support": "^7.0.0",
"tough-cookie": "^6.0.1"
},
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"packageManager": "pnpm@11.1.3"
}