forked from metaplex-foundation/js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.25 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
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
{
"name": "@leda-mint-io/js",
"version": "0.4.2",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"/dist/cjs",
"/dist/esm",
"/dist/types",
"/src"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"description": "Metaplex JavaScript SDK",
"keywords": [
"nft",
"ledamint",
"safecoin",
"blockchain"
],
"author": "Metaplex Maintainers <[email protected]>",
"homepage": "https://metaplex.com",
"repository": {
"url": "https://github.com/metaplex/js-next.git"
},
"scripts": {
"check:publish-ready": "yarn build",
"prepublishOnly": "yarn check:publish-ready",
"preversion": "yarn check:publish-ready",
"postversion": "git push --follow-tags",
"clean": "rimraf dist",
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build:esm": "ttsc -p tsconfig.json",
"build:cjs": "ttsc -p tsconfig.cjs.json",
"amman:start": "DEBUG='amman*' amman validator",
"amman:stop": "pkill solana-test-validator",
"lint": "prettier -c ./src/",
"lint:fix": "prettier --write ./src"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.54.1",
"@j0nnyboi/client": "^0.7.3",
"@j0nnyboi/beet": "^0.1.0",
"@j0nnyboi/beet-safecoin": "^0.1.1",
"@leda-mint-io/lpl-token-metadata": "^2.1.0",
"@safecoin/safe-token": "^0.2.0",
"@j0nnyboi/wallet-adapter-base": "^0.9.3",
"@safecoin/web3.js": "^1.37.0",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"eventemitter3": "^4.0.7",
"lodash.clonedeep": "^4.5.0",
"mime": "^3.0.0",
"nft.storage": "^6.0.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@j0nnyboi/amman": "^0.1.0",
"@ovos-media/ts-transform-paths": "^1.7.18-1",
"@types/bn.js": "^5.1.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mime": "^2.0.3",
"@types/sinon": "^10.0.11",
"@types/tape": "^4.13.2",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"spok": "^1.4.3",
"tape": "^5.5.2",
"ttypescript": "^1.5.13",
"typescript": "4.6.3"
}
}