-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.52 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.52 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
{
"$schema": "https://json.schemastore.org/package",
"name": "cli",
"version": "5.0.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.9.0"
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.2"
},
"packageManager": "pnpm@10.33.2",
"type": "module",
"bin": {
"evse-cli": "./dist/cli.js"
},
"scripts": {
"build": "node scripts/bundle.js",
"start": "node dist/cli.js",
"clean:dist": "pnpm exec rimraf dist",
"clean:node_modules": "pnpm exec rimraf node_modules",
"lint": "cross-env TIMING=1 eslint --cache .",
"lint:fix": "cross-env TIMING=1 eslint --cache --fix .",
"format": "prettier --cache --write .; eslint --cache --fix .",
"test": "cross-env NODE_ENV=test node --import tsx --test --test-force-exit 'tests/*.test.ts'",
"test:integration": "pnpm build && cross-env NODE_ENV=test node --import tsx --test --test-force-exit 'tests/integration/**/*.test.ts'",
"test:coverage": "mkdir -p coverage && cross-env NODE_ENV=test node --import tsx --test --test-force-exit --experimental-test-coverage --test-coverage-include='src/**/*.ts' --test-reporter=lcov --test-reporter-destination=coverage/lcov.info 'tests/*.test.ts'",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"ora": "^9.4.0",
"ui-common": "workspace:*",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"esbuild": "^0.28.0",
"esbuild-plugin-clean": "^1.0.1"
}
}