-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ledgerpet",
"version": "0.1.0",
"description": "Local-first synthetic finance anomaly trainer for testing agents without real ledger data.",
"type": "module",
"bin": {
"ledgerpet": "./src/cli.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"fixtures",
"examples",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"scripts": {
"test": "node --test tests/*.test.js",
"check": "node --check src/*.js && node --check tests/*.js",
"build": "node scripts/build-check.js",
"smoke": "node src/cli.js inspect fixtures/sample --scenario ghost-payment --output out/smoke --format markdown && test -f out/smoke/report.md",
"docs:smoke": "bash scripts/docs-install-smoke.sh",
"package:smoke": "npm pack --dry-run",
"release:check": "npm run check && npm test && npm run smoke && npm run docs:smoke && npm run package:smoke"
},
"keywords": [
"finance-ops",
"synthetic-data",
"agent-eval",
"local-first",
"cli"
],
"author": "Roger Chappel",
"license": "MIT",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerchappel/ledgerpet.git"
},
"bugs": {
"url": "https://github.com/rogerchappel/ledgerpet/issues"
},
"homepage": "https://github.com/rogerchappel/ledgerpet#readme"
}