UNPKG

am-i-vibing

Version:

Detect agentic coding environments and AI assistant tools

50 lines 1.21 kB
{ "name": "am-i-vibing", "version": "0.1.0", "description": "Detect agentic coding environments and AI assistant tools", "type": "module", "main": "dist/index.js", "bin": { "am-i-vibing": "dist/cli.js" }, "files": [ "dist" ], "exports": { ".": "./dist/index.js" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@types/node": "^22.17.0", "publint": "^0.3.12", "tsdown": "^0.13.3", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "repository": { "type": "git", "url": "git+https://github.com:ascorbic/am-i-vibing.git", "directory": "packages/am-i-vibing" }, "homepage": "https://github.com/ascorbic/am-i-vibing", "keywords": [ "ai", "agentic", "coding", "detection", "llm", "assistant" ], "author": "Matt Kane", "license": "MIT", "dependencies": { "process-ancestry": "^0.0.2" }, "scripts": { "build": "tsdown src/index.ts src/cli.ts --format esm --dts --clean", "dev": "tsdown src/index.ts src/cli.ts --format esm --dts --watch", "check": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm", "test": "vitest run", "whoami": "tsx scripts/whoami.ts" } }