-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.9 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.9 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
{
"name": "code-typescript-client",
"version": "1.0.0",
"description": "",
"source": "src/sdk.ts",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"simulation": "npm run build && node build/test/organizer/simulation.js ",
"simulation:debug": "npm run build && node --inspect-brk build/test/organizer/simulation.js",
"tests": "npm run build && node build/test/index.js ",
"tests:debug": "npm run build && node --inspect-brk build/test/index.js",
"examples": "npm run build && node build/examples/index.js",
"examples:debug": "npm run build && node --inspect-brk build/examples/index.js",
"build": "rimraf ./build && tsc",
"bundle": "rimraf ./dist && parcel build"
},
"devDependencies": {
"@grpc/grpc-js": "^1.7.2",
"@metaplex-foundation/beet": "^0.7.1",
"@metaplex-foundation/beet-solana": "^0.4.0",
"@metaplex-foundation/solita": "^0.5.1",
"@types/bn.js": "^5.1.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/node": "^18.7.18",
"@types/treeify": "^1.0.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"crypto-browserify": "^3.12.0",
"debug": "^4.3.3",
"dotenv": "^16.0.2",
"eslint": "^8.3.0",
"events": "^3.3.0",
"long": "^5.2.0",
"os-browserify": "^0.3.0",
"parcel": "^2.7.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"protobufjs": "^7.1.2",
"querystring-es3": "^0.2.1",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"supports-color": "^9.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"url": "^0.11.0",
"util": "^0.12.5"
},
"dependencies": {
"@noble/ed25519": "^1.7.0",
"@noble/hashes": "^1.1.3",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "^1.35.1",
"bn.js": "^5.2.0",
"bs58": "^5.0.0"
},
"browserslist": [
"last 1 chrome versions"
]
}