-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.84 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.84 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@alphabatem/liquifynft-sdk",
"version": "1.1.15",
"author": "AlphaBatem Labs",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"test": "mocha",
"semantic-release": "semantic-release",
"prepack": "npm run build"
},
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphabatem/nft-amm-sdk.git"
},
"keywords": [
"npm",
"javascript",
"typescript",
"esm",
"cjs",
"nodejs",
"commonjs",
"ecmascript",
"sdk",
"aggregator",
"nft"
],
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"description": "This SDK Allows you to interface with the LiquifyNFT Aggregator to provide your users the best price to instantly sell any NFT in any token.",
"bugs": {
"url": "https://alphabatem.com"
},
"homepage": "https://liquifynft.com",
"directories": {
"lib": "lib"
},
"dependencies": {
"@solana/web3.js": "^1.73.0",
"acorn": "^8.8.1",
"acorn-walk": "^8.2.0",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1"
}
}