mirror of
https://github.com/lennyzeltser/conversation-replay
synced 2026-06-21 13:55:53 +00:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "conversation-replay",
|
|
"version": "0.1.20",
|
|
"description": "Create annotated replays of text conversations",
|
|
"main": "dist/cli.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"conversation-replay": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"schema.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "bun run src/cli.ts build",
|
|
"validate": "bun run src/cli.ts validate",
|
|
"example": "bun run src/cli.ts build examples/london-scam.yaml -o examples/london-scam.html",
|
|
"build:dist": "bun build src/cli.ts --target=node --outfile=dist/cli.js --packages=bundle",
|
|
"prepare": "bun run build:dist",
|
|
"prepublishOnly": "bun run build:dist"
|
|
},
|
|
"keywords": [
|
|
"conversation",
|
|
"demo",
|
|
"animation",
|
|
"security-awareness",
|
|
"training",
|
|
"chat",
|
|
"replay"
|
|
],
|
|
"author": "Lenny Zeltser",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lennyzeltser/conversation-replay"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"yaml": "^2.8.2"
|
|
}
|
|
}
|