-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.31 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
{
"name": "@streamflow/launchpad",
"version": "11.2.1",
"description": "JavaScript SDK to interact with Streamflow Launchpad protocol.",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"exports": {
".": {
"types": {
"import": "./dist/esm/index.d.ts",
"require": "./dist/cjs/index.d.cts"
},
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./solana/idl/streamflow_launchpad.json": {
"import": "./dist/esm/solana/descriptor/idl/streamflow_launchpad.json",
"require": "./dist/esm/solana/descriptor/idl/streamflow_launchpad.json",
"default": "./dist/esm/solana/descriptor/idl/streamflow_launchpad.json"
},
"./solana/descriptor/streamflow_launchpad": {
"types": {
"import": "./dist/esm/solana/descriptor/streamflow_launchpad.d.ts",
"require": "./dist/cjs/solana/descriptor/streamflow_launchpad.d.cts"
},
"import": "./dist/esm/solana/descriptor/streamflow_launchpad.js",
"require": "./dist/cjs/solana/descriptor/streamflow_launchpad.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"copyIdls": "mkdir -p dist/esm/solana/descriptor/idl && cp solana/descriptor/idl/*.json dist/esm/solana/descriptor/idl/",
"tsc:lint": "tsc --noEmit",
"build": "rm -rf dist && tsup && pnpm copyIdls",
"pack": "pnpm build && pnpm pack",
"test": "vitest run --passWithNoTests",
"lint": "eslint --fix .",
"prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build"
},
"gitHead": "a37306eba0e762af096db642fa22f07194014cfd",
"devDependencies": {
"@streamflow/eslint-config": "workspace:*",
"@types/bn.js": "5.1.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@coral-xyz/borsh": "^0.32.1",
"@solana/buffer-layout": "4.0.1",
"@solana/spl-token": "0.4.9",
"@solana/wallet-adapter-base": "0.9.19",
"@solana/web3.js": "1.95.4",
"@streamflow/common": "workspace:*",
"@streamflow/stream": "workspace:*",
"bn.js": "5.2.1",
"borsh": "^2.0.0",
"bs58": "5.0.0",
"p-queue": "^8.0.1"
}
}