-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 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
{
"name": "solana-agent-auth",
"version": "0.1.0",
"description": "Signed HTTP requests with Solana — the Solana equivalent of ERC-8128",
"scripts": {
"build": "bun run build.ts",
"test": "bun test"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "MIT",
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"./dist"
],
"dependencies": {
"@noble/hashes": "^1.8.0",
"@solana/kit": "^2.1.0"
},
"devDependencies": {
"typescript": "^5.9.2",
"bun-plugin-dts": "^0.3.0",
"bun-types": "^1.2.22",
"@biomejs/biome": "^2.2.4",
"@types/node": "^24.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/aadilahmed/solana-agent-auth"
},
"keywords": [
"solana",
"http",
"authentication",
"ed25519",
"rfc9421",
"agent",
"wallet",
"signature"
]
}