mirror of
https://github.com/ruvnet/RuView
synced 2026-07-03 14:13:17 +00:00
d26fb0b8fc
Co-Authored-By: claude-flow <ruv@ruv.net>
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@ruv/ruview-cli",
|
|
"version": "0.0.1",
|
|
"description": "RuView CLI — shell access to WiFi-DensePose sensing, inference, and training capabilities. Private/unpublished; the `ruview` bin name belongs to @ruvnet/ruview (ADR-265 D4).",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"ruview-cli": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"ruview",
|
|
"wifi",
|
|
"csi",
|
|
"pose-estimation",
|
|
"cognitum",
|
|
"cli"
|
|
],
|
|
"author": "ruv <ruv@ruv.net>",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.0",
|
|
"@types/yargs": "^17.0.32",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|