-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ocpp-smart-charge-engine",
"version": "0.1.0-alpha",
"description": "Library-agnostic OCPP smart charging constraint solver. Works with ocpp-ws-io, raw WebSocket, or any OCPP implementation.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./strategies": {
"types": "./dist/strategies/index.d.ts",
"import": "./dist/strategies/index.mjs",
"require": "./dist/strategies/index.js"
},
"./builders": {
"types": "./dist/builders.d.ts",
"import": "./dist/builders.mjs",
"require": "./dist/builders.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome lint .",
"prepare": "husky"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ocpp",
"ocpp1.6",
"ocpp2.0.1",
"smart-charging",
"ev-charging",
"csms",
"cpo",
"load-balancing",
"charging-profile",
"electric-vehicle",
"e-mobility",
"SetChargingProfile",
"energy-management",
"typescript"
],
"author": "Rohit Tiwari <rohit@rohittiwari.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rohittiwari-dev/ocpp-smart-charge-engine.git"
},
"bugs": {
"url": "https://github.com/rohittiwari-dev/ocpp-smart-charge-engine/issues"
},
"homepage": "https://github.com/rohittiwari-dev/ocpp-smart-charge-engine#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@vitest/coverage-v8": "^4.0.18",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}