{
"name": "briefcase-node",
"version": "0.1.0",
"description": "Node.js bindings for Briefcase AI - AI observability and replay SDK",
"main": "index.node",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"cargo-cp-artifact": "^0.1"
},
"files": [
"index.node",
"index.d.ts"
],
"keywords": [
"ai",
"observability",
"replay",
"debugging",
"machine-learning",
"drift-detection",
"cost-analysis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/briefcase-ai/briefcase-ai"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"tests/**/*.js"
]
}
}