-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "@iqlabs-official/solana-sdk",
"version": "0.1.20",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./crypto": {
"types": "./dist/sdk/crypto/index.d.ts",
"default": "./dist/sdk/crypto/index.js"
},
"./reader": {
"types": "./dist/sdk/reader/index.d.ts",
"default": "./dist/sdk/reader/index.js"
},
"./writer": {
"types": "./dist/sdk/writer/index.d.ts",
"default": "./dist/sdk/writer/index.js"
},
"./contract": {
"types": "./dist/contract/index.d.ts",
"default": "./dist/contract/index.js"
},
"./utils": {
"types": "./dist/sdk/utils/index.d.ts",
"default": "./dist/sdk/utils/index.js"
},
"./constants": {
"types": "./dist/sdk/constants.d.ts",
"default": "./dist/sdk/constants.js"
}
},
"files": [
"dist",
"idl"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IQCoreTeam/iqlabs-solana-sdk.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test:contract": "tsx tests/contract/smoke.ts",
"test:sdk": "tsx tests/sdk/smoke.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^1.8.0",
"@solana/web3.js": "^1.98.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}