@arizeai/phoenix-cli
Version:
A command-line interface for Phoenix
54 lines • 1.32 kB
JSON
{
"name": "@arizeai/phoenix-cli",
"version": "0.0.4",
"description": "A command-line interface for Phoenix",
"main": "dist/src/index.js",
"module": "dist/esm/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"phoenix-cli": "dist/src/index.js"
},
"files": [
"dist",
"src",
"package.json"
],
"keywords": [
"phoenix",
"cli",
"arize",
"llmops"
],
"author": "oss@arize.com",
"license": "Apache-2.0",
"homepage": "https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/phoenix.git"
},
"bugs": {
"url": "https://github.com/Arize-ai/phoenix/issues"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^18.19.0",
"typescript": "^5.8.2",
"vitest": "^2.1.9",
"rimraf": "^5.0.10",
"tsc-alias": "^1.8.11"
},
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"build": "tsc --build tsconfig.json tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"postbuild": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest --typecheck"
}
}