-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 736 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 736 Bytes
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
{
"name": "windexer-typescript-examples",
"version": "1.0.0",
"description": "TypeScript examples for interacting with wIndexer",
"type": "module",
"scripts": {
"query-solana": "ts-node query-solana.ts",
"websocket": "ts-node websocket-subscribe.ts",
"query-windexer": "ts-node query-windexer.ts",
"generate-data": "ts-node generate-data.ts",
"simple-tx": "ts-node simple-tx.ts",
"ts-examples": "../../scripts/run-ts-examples.sh"
},
"dependencies": {
"@solana/web3.js": "^1.98.0",
"axios": "^1.6.0",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"url": "^0.11.4"
},
"devDependencies": {
"@types/node": "^20.8.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}