-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.63 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@neonevm/token-transfer",
"version": "4.4.1",
"description": "JavaScript client-side module for creating transfer transactions from Solana to NeonEVM",
"private": true,
"workspaces": [
"packages/*"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"/dist/cjs",
"/dist/esm",
"/dist/types",
"/src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "yarn test",
"build": "lerna run build --stream",
"publish": "npx lerna publish from-package",
"prepack": "lerna run prepack --stream",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch --detectOpenHandles",
"audit": "lerna run audit --stream",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neonlabsorg/neon-client-transfer.git"
},
"keywords": [
"neonlabs",
"neon-evm",
"erc20",
"spl",
"token-transfering"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/neonlabsorg/neon-client-transfer/issues"
},
"homepage": "https://github.com/neonlabsorg/neon-client-transfer#readme",
"dependencies": {},
"devDependencies": {
"@metaplex-foundation/mpl-candy-machine": "^6.0.1",
"@metaplex-foundation/mpl-token-metadata": "^3.2.0",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@neonevm/token-transfer-core": "4.4.1",
"@neonevm/token-transfer-ethers": "4.4.1",
"@neonevm/token-transfer-web3": "4.4.1",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.77.3",
"@types/big.js": "^6.1.6",
"@types/jest": "^29.2.3",
"@types/node-fetch": "^2.6.10",
"@typescript-eslint/parser": "^5.43.0",
"big.js": "^6.2.1",
"bs58": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.13.3",
"jest": "^29.3.1",
"lerna": "^8.1.2",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"solc": "^0.8.23-fixed",
"token-list": "https://github.com/neonlabsorg/token-list.git#v5.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.0",
"typescript": "^5.7.2",
"web3": "^4.5.0",
"web3-core": "^4.3.2",
"web3-eth": "^4.3.1",
"web3-eth-abi": "^4.1.4",
"web3-eth-accounts": "^4.1.0",
"web3-eth-contract": "^4.1.4",
"web3-providers-http": "^4.1.0",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0"
}
}