-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "@outpost67/sdk",
"version": "1.0.0",
"description": "The official TypeScript SDK for Outpost67.",
"license": "MIT",
"author": "Filebase",
"repository": {
"type": "git",
"url": "git+https://github.com/filebase/outpost67-sdk.git"
},
"keywords": [
"x402",
"outpost67",
"sdk",
"storage",
"base",
"solana",
"usdc",
"crypto"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf dist",
"build:esm": "tsc -p tsconfig.json && echo '{\"type\":\"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run prebuild && npm run build:esm && npm run build:cjs",
"docs": "typedoc"
},
"private": false,
"dependencies": {
"@solana/kit": "6.0.1",
"@solana/web3.js": "1.98.4",
"@x402/axios": "2.3.0",
"@x402/core": "2.3.0",
"@x402/evm": "2.3.0",
"@x402/svm": "2.3.0",
"axios": "1.13.4",
"form-data": "4.0.5",
"viem": "2.45.1"
},
"devDependencies": {
"@types/form-data": "2.5.2",
"@types/node": "25.2.1",
"typedoc": "0.28.16",
"typescript": "5.9.3"
}
}