-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "kinetic-gain-embedded",
"version": "0.1.1",
"description": "Kinetic Gain Embedded — drop-in audit-stream + Decision Card vault contract SDK for B2B SaaS. Emit hash-chained Suite-compliant audit events, enforce vault contracts before AI tools touch sensitive data, validate Decision Cards. TypeScript-first, dual ESM/CJS, zero runtime deps.",
"license": "Apache-2.0",
"author": "Miz Causevic <miz@kineticgain.com>",
"homepage": "https://kineticgain.com/embedded/",
"repository": {
"type": "git",
"url": "https://github.com/mizcausevic-dev/kinetic-gain-embedded.git"
},
"bugs": {
"url": "https://github.com/mizcausevic-dev/kinetic-gain-embedded/issues"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"schema/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node scripts/rename-cjs.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"kinetic-gain",
"kinetic-gain-protocol-suite",
"embedded-analytics",
"audit-stream",
"decision-card",
"vault-contract",
"ai-governance",
"ai-disclosure",
"hash-chained-audit",
"tokenization",
"saas-embedding",
"typescript",
"compliance-scaffolding",
"ed25519"
],
"devDependencies": {
"@types/node": "^25.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}