-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "@headlessoracle/client",
"version": "0.1.0",
"description": "TypeScript client for Headless Oracle V5 — signed market status receipts for AI agents",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "vitest run"
},
"peerDependencies": {
"@headlessoracle/verify": "^1.0.0"
},
"peerDependenciesMeta": {
"@headlessoracle/verify": { "optional": true }
},
"devDependencies": {
"@headlessoracle/verify": "^1.0.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
},
"keywords": ["oracle", "market", "trading", "Ed25519", "ai-agents", "typescript"],
"license": "MIT",
"homepage": "https://headlessoracle.com",
"repository": {
"type": "git",
"url": "https://github.com/LembaGang/headless-oracle-client"
}
}