-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 783 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 783 Bytes
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
{
"name": "eviqo-monorepo",
"version": "1.2.1",
"private": true,
"description": "Eviqo EV Charger client API and MQTT gateway monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"build:client": "npm run build -w eviqo-client-api",
"build:mqtt": "npm run build -w eviqo-mqtt",
"test": "npm test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tsightler/eviqo-client-api.git"
},
"author": "Zach <zach@smamily.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}