forked from ledamint-IO/js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.99 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.99 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
81
82
83
84
{
"name": "@safecoin/js",
"version": "0.15.0",
"sideEffects": false,
"module": "dist/esm/index.mjs",
"main": "dist/cjs/index.cjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"/dist/cjs",
"/dist/esm",
"/dist/types",
"/src"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"description": "Metaplex JavaScript SDK",
"keywords": [
"nft",
"metaplex",
"solana",
"blockchain"
],
"author": "Metaplex Maintainers <contact@metaplex.com>",
"homepage": "https://metaplex.com",
"repository": {
"url": "https://github.com/metaplex-foundation/js.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc && tsc-alias && tsc",
"preversion": "yarn build",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@safecoin/beet": "^0.4.0",
"@safecoin/beet-safecoin": "^0.3.0",
"@safecoin/client": "^0.7.3",
"@safecoin/lpl-auction-house": "^2.1.1",
"@safecoin/lpl-candy-machine": "^5.1.2",
"@safecoin/lpl-token-metadata": "^2.2.2",
"@safecoin/safe-token": "^0.2.2",
"@safecoin/web3.js": "^1.44.3",
"abort-controller": "^3.0.0",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"eventemitter3": "^4.0.7",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mime": "^3.0.0",
"tweetnacl": "^1.0.3"
},
"engines": {
"node": ">=16.0"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
"displayName": "js"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/mime": "^3.0.1",
"tsc-alias": "^1.8.3"
}
}