Files
helios-evcs/package.json
2026-03-10 11:17:14 +08:00

36 lines
917 B
JSON

{
"name": "helios-evcs",
"version": "1.0.0",
"private": true,
"description": "Helios EV Charging Station Management System",
"scripts": {
"dev:csms": "pnpm --filter csms dev",
"build:csms": "pnpm --filter csms build",
"start:csms": "pnpm --filter csms start",
"dev:web": "pnpm --filter helios-web dev",
"build:web": "pnpm --filter helios-web build",
"start:web": "pnpm --filter helios-web start",
"dev": "run-p dev:csms dev:web",
"build": "run-p build:csms build:web",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"keywords": [
"ev",
"evcs",
"ocpp"
],
"author": {
"name": "Timothy Yin",
"email": "master@uniiem.com"
},
"license": "ISC",
"packageManager": "pnpm@10.18.2",
"devDependencies": {
"npm-run-all": "^4.1.5",
"oxfmt": "^0.36.0",
"oxlint": "^1.52.0"
}
}