-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.71 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
{
"name": "@solana/solidity",
"version": "0.0.25",
"description": "Solana Solidity Contracts JavaScript Client",
"license": "Apache-2.0",
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src",
"LICENSE",
"README.md"
],
"type": "commonjs",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/solana-solidity.js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "shx rm -rf lib",
"build": "yarn clean && tsc",
"watch": "yarn build -w",
"prepublishOnly": "yarn build",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=4096 typedoc && shx cp .nojekyll docs/",
"deploy:docs": "gh-pages --dist docs --dotfiles",
"build:test": "./build-test-examples.sh",
"test": "yarn test:unit && yarn test:examples",
"test:unit": "mocha test/unit/**/*.test.ts",
"test:examples": "mocha test/examples/**/*.test.ts",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf node_modules yarn.lock",
"docker": "docker pull ghcr.io/hyperledger/solang:latest && docker pull solanalabs/solana:edge",
"validator": "docker run --rm -it -p 8899:8899 -p 8900:8900 solanalabs/solana:edge > /dev/null"
},
"dependencies": {
"@dao-xyz/borsh": "3.3.0",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@solana/web3.js": "^1.30.2",
"bn.js": "^5.2.1",
"fast-sha256": "1.3.0",
"snake-case": "3.0.4"
},
"devDependencies": {
"@ethersproject/contracts": "^5.5.0",
"@types/bs58": "^4.0.1",
"@types/eslint": "^7.28.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.32",
"@types/prettier": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expect": "^26.6.2",
"gh-pages": "^3.2.3",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"shx": "^0.3.4",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
}
}