-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "json-atomic",
"version": "1.1.0",
"description": "JSON✯Atomic - Lightweight, versatile backend with universal JSON language and AI-native design",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:deno": "deno test --allow-all tests/",
"verify": "deno run --allow-read --allow-env tools/cli/logline-cli.ts verify",
"cli": "deno run --allow-all tools/cli/logline-cli.ts"
},
"files": [
"dist",
"schemas",
"README.md"
],
"exports": {
".": "./dist/index.js",
"./atomic": "./dist/atomic.js",
"./ledger": "./dist/ledger.js",
"./contracts": "./dist/contracts/index.js",
"./execution": "./dist/execution/index.js",
"./schemas": "./schemas/atomic.schema.json"
},
"keywords": [
"ledger",
"blockchain",
"governance",
"audit",
"cryptography",
"ed25519",
"blake3"
],
"author": "JSON✯Atomic Team",
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"zod": "^3.22.0",
"pino": "^8.16.0",
"pino-pretty": "^10.2.0",
"prom-client": "^15.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"@types/jest": "^29.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"@types/pino": "^7.0.0"
}
}