-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
142 lines (142 loc) · 5.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@lit-protocol/js-sdk",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"reset:hard": "yarn reset && sh ./tools/scripts/reset.sh",
"reset:dev": "yarn tools --remove-local-dev",
"reset": "rm -rf ./dist/packages && yarn reset:dev",
"build": "yarn build:packages",
"build:dev": "yarn tools --remove-local-dev && rm -rf ./dist && yarn tools check --no-empty-directories=true && yarn tools fixTsConfig && yarn tools --match-versions && yarn nx run-many --target=build && yarn tools --setup-local-dev && yarn build:verify",
"build:packages": "yarn tools --remove-local-dev && rm -rf ./dist && yarn gen:internal-dev && yarn tools check --no-empty-directories=true && yarn tools fixTsConfig && yarn tools --match-versions && yarn nx run-many --target=build && yarn tools --setup-local-dev && yarn gen:readme && yarn build:verify && yarn nx format:write --all",
"build:target": "yarn node tools/scripts/build.mjs",
"build:setupLocalDev": "yarn tools --setup-local-dev",
"build:verify": "yarn tools --verify",
"bundles": "yarn node ./esbuilder/lit-connect-modal/esbuild.js",
"postBuild:mapDistFolderNameToPackageJson": "node ./tools/scripts/map-dist-folder-name-to-package-json.mjs",
"postBuild:mapDepsToDist": "node tools/scripts/map-deps-to-dist.mjs packages dist @lit-protocol",
"test:ci": "nx affected --target=test --all --code-coverage",
"test:local": "node ./local-tests/build.mjs && dotenvx run --env-file=.env -- node ./local-tests/build/test.mjs",
"test:unit": "nx run-many --target=test",
"test:unit:watch": "nx run-many --target=test --watch",
"test:unit:bun": "bun ./tools/scripts/unit-test-with-bun.mjs",
"publish:packages": "yarn node ./tools/scripts/pub.mjs --prod",
"publish:beta": "yarn node ./tools/scripts/pub.mjs --tag beta",
"publish:staging": "yarn node ./tools/scripts/pub.mjs --tag staging",
"gen:docs": "node ./tools/scripts/gen-doc.mjs",
"gen:readme": "yarn node ./tools/scripts/gen-readme.mjs",
"gen:internal-dev": "node ./tools/scripts/gen-internal-dev.mjs",
"update:contracts-sdk": "yarn node ./packages/contracts-sdk/tools.mjs",
"tools": "yarn node ./tools/scripts/tools.mjs",
"graph": "nx graph",
"v": "node ./tools/scripts/get-npm-version.mjs",
"prettier": "nx format:write --all",
"prettier:check": "nx format:check --all"
},
"private": true,
"dependencies": {
"@cosmjs/amino": "0.30.1",
"@cosmjs/crypto": "0.30.1",
"@cosmjs/encoding": "0.30.1",
"@cosmjs/proto-signing": "0.30.1",
"@cosmjs/stargate": "0.30.1",
"@dotenvx/dotenvx": "^1.6.4",
"@lit-protocol/accs-schemas": "^0.0.15",
"@lit-protocol/contracts": "^0.0.63",
"@metamask/eth-sig-util": "5.0.2",
"@mysten/sui.js": "^0.37.1",
"@simplewebauthn/browser": "^7.2.0",
"@simplewebauthn/typescript-types": "^7.0.0",
"@spruceid/siwe-parser": "2.0.0",
"@walletconnect/core": "2.9.2",
"@walletconnect/ethereum-provider": "2.9.2",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/modal": "2.6.1",
"@walletconnect/types": "2.9.2",
"@walletconnect/utils": "2.9.2",
"@walletconnect/web3wallet": "1.8.8",
"ajv": "^8.12.0",
"base64url": "^3.0.1",
"bitcoinjs-lib": "^6.1.0",
"bs58": "^5.0.0",
"cbor-web": "^9.0.1",
"cross-fetch": "3.1.4",
"date-and-time": "^2.4.1",
"dotenv-parse-variables": "^2.0.0",
"download": "^8.0.0",
"ethers": "^5.7.1",
"jose": "^4.14.4",
"jszip": "^3.10.1",
"micromodal": "^0.4.10",
"multiformats": "^9.7.1",
"next": "13.3.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"regenerator-runtime": "0.13.7",
"secp256k1": "^5.0.0",
"siwe": "^2.0.5",
"siwe-recap": "0.0.2-alpha.0",
"tslib": "^2.3.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uint8arrays": "^4.0.3"
},
"devDependencies": {
"@nx/esbuild": "^17.3.0",
"@nx/eslint-plugin": "17.3.0",
"@nx/jest": "17.3.0",
"@nx/js": "17.3.0",
"@nx/linter": "17.3.0",
"@nx/next": "17.3.0",
"@nx/node": "17.3.0",
"@nx/plugin": "17.3.0",
"@nx/react": "17.3.0",
"@nx/web": "17.3.0",
"@solana/web3.js": "^1.92.2",
"@swc/core": "1.3.107",
"@types/jest": "27.4.1",
"@types/node": "18.19.18",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"axios": "^1.6.0",
"babel-jest": "27.5.1",
"body-parser": "^1.20.2",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"cypress": "11.0.1",
"cypress-metamask": "^1.0.5-development",
"cypress-metamask-v2": "^1.7.2",
"esbuild": "^0.17.3",
"esbuild-node-builtins": "^0.1.0",
"esbuild-node-externals": "^1.13.0",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "8.48.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"ethereum-abi-types-generator": "^1.3.2",
"express": "^4.18.2",
"form-data": "^4.0.0",
"inquirer": "^9.2.21",
"ipfs-unixfs-importer": "12.0.1",
"jest": "27.5.1",
"lerna": "^5.4.3",
"live-server": "^1.2.2",
"node-fetch": "^2.6.1",
"node-localstorage": "^3.0.5",
"nx": "17.3.0",
"path": "^0.12.7",
"prettier": "^2.6.2",
"react-router-dom": "6.11.2",
"ts-jest": "29.1.2",
"typedoc": "^0.23.10",
"typescript": "~4.7.2"
},
"workspaces": [
"packages/*"
]
}