forked from amadeusprotocol/amadeus-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.92 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@amadeus-protocol/sdk",
"version": "1.0.0",
"description": "Official TypeScript/JavaScript SDK for Amadeus Protocol - Core utilities for serialization, cryptography, transaction building, and API client",
"repository": {
"type": "git",
"url": "https://github.com/amadeusprotocol/amadeus-typescript-sdk.git"
},
"homepage": "https://github.com/amadeusprotocol/amadeus-typescript-sdk#readme",
"bugs": {
"url": "https://github.com/amadeusprotocol/amadeus-typescript-sdk/issues"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"example:basic": "tsx examples/basic-usage.ts",
"example:api": "tsx examples/api-usage.ts",
"example:tx": "tsx examples/transaction-flow.ts",
"prepublishOnly": "npm run build && npm run test && npm run lint",
"prepack": "npm run build"
},
"keywords": [
"amadeus",
"protocol",
"sdk",
"blockchain",
"ai",
"ai-agent",
"agi",
"nova",
"cryptography",
"bls12-381",
"vecpack",
"typescript",
"javascript"
],
"author": "Amadeus Protocol",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@noble/curves": "^1.9.1",
"@noble/hashes": "^1.8.0",
"bs58": "^6.0.0",
"effect": "^3.19.8"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.21.0",
"prettier": "^3.7.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.1",
"vitest": "^2.1.0"
}
}