-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.1 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
{
"name": "@snapkitty/ledge",
"version": "0.1.0",
"description": "Sovereign audit chain SDK — SHA-256 hash-linked append-only audit trail for AI agents and financial systems",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist", "pkg", "src/lib.rs", "Cargo.toml"],
"scripts": {
"build:wasm": "wasm-pack build --features wasm --target bundler --out-dir pkg",
"build:js": "tsup js/index.ts --format cjs,esm --dts --out-dir dist",
"build": "npm run build:wasm && npm run build:js",
"test:rust": "cargo test",
"test": "vitest run",
"lint": "tsc --noEmit"
},
"keywords": ["audit", "worm", "chain", "cryptographic", "ledger", "ai", "compliance", "fintech", "merkle", "rust", "wasm"],
"author": "SnapKitty Sovereign OS · LOC (Rust kinetic agent)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SNAPKITTYWEST/DEVFLOW-FINANCE",
"directory": "ledge-open"
},
"devDependencies": {
"tsup": "^8.0.0",
"vitest": "^1.0.0",
"typescript": "^5.0.0"
}
}