-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "@soundwork-oss/soundwork-sdk",
"version": "0.0.21",
"description": "TypeScript client for the soundwork marketplace contracts",
"repository": {
"type": "git",
"url": "https://github.com/SoundWorkLabs/soundwork-sdk.git"
},
"homepage": "https://github.com/SoundWorkLabs/soundwork-sdk#readme",
"keywords": [
"soundwork",
"web3",
"solana",
"typescript",
"sdk"
],
"main": "./dist/main.js",
"files": [
"dist"
],
"scripts": {
"build:ts": "rm -rf ./dist && tsc",
"update-list-types": "cp ../marketplace-contracts/target/types/soundwork_list.ts src/soundwork-list/idl",
"update-bid-types": "cp ../marketplace-contracts/target/types/soundwork_bid.ts src/soundwork-bid/idl",
"update-types": "pnpm run update-list-types && pnpm run update-bid-types",
"update-list-idl": "cp ../marketplace-contracts/target/idl/soundwork_list.json src/soundwork-list/idl",
"update-bid-idl": "cp ../marketplace-contracts/target/idl/soundwork_bid.json src/soundwork-bid/idl",
"update-idl": "pnpm run update-list-idl && pnpm run update-bid-idl",
"update-all": "pnpm run update-idl && pnpm run update-types",
"test": "jest --runInBand --forceExit --coverage --verbose"
},
"author": "Jimii <[email protected]>",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.87.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"jest-runner-tsc": "^1.6.0",
"ts-jest": "^29.1.1"
}
}