-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 KB
/
package.json
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
{
"name": "@streamflow/launchpad",
"version": "7.5.2",
"description": "JavaScript SDK to interact with Streamflow Launchpad protocol.",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./solana/idl/*": {
"types": "./dist/esm/solana/descriptor/*",
"import": "./dist/esm/solana/descriptor/*",
"require": "./dist/cjs/solana/descriptor/*"
}
},
"scripts": {
"build:cjs": "rm -rf dist/cjs; tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf dist/esm; tsc -p tsconfig.esm.json",
"build": "rm -rf dist; pnpm run build:cjs && pnpm run build:esm",
"pack": "pnpm build && pnpm pack",
"lint": "eslint --fix .",
"prepublishOnly": "npm run lint && npm run build"
},
"gitHead": "a37306eba0e762af096db642fa22f07194014cfd",
"devDependencies": {
"@streamflow/eslint-config": "workspace:*",
"@types/bn.js": "5.1.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@coral-xyz/borsh": "^0.30.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"
}
}