-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "@solana-commerce/sdk",
"version": "0.1.0",
"description": "React hooks for Solana development",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.mjs",
"require": "./dist/react.js"
}
},
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"lint": "biome lint src/",
"test": "vitest",
"clean": "rm -rf dist"
},
"peerDependencies": {
"react": ">=18.0.0",
"@tanstack/react-query": ">=5.0.0"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {
"optional": true
}
},
"dependencies": {
"@solana-commerce/connector": "workspace:*",
"@solana/kit": "^2.3.0",
"@solana/keys": "^2.3.0",
"@solana/rpc-types": "^2.3.0",
"@solana-program/compute-budget": "^0.8.0",
"@solana-program/system": "^0.7.0",
"@solana-program/token": "^0.5.1",
"@solana/transactions": "^2.3.0",
"@wallet-standard/app": "^1.0.0",
"@wallet-standard/base": "^1.0.0",
"@wallet-standard/features": "^1.0.0",
"gill": "^0.10.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.0",
"@vitest/coverage-v8": "^3.2.4",
"happy-dom": "^15.10.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"keywords": [
"solana",
"react",
"hooks",
"blockchain",
"web3"
],
"license": "MIT"
}