forked from LIT-Protocol/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
208 lines (208 loc) · 8.41 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"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 --build --packages && 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 --build --packages && 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",
"pipe": "node ./tools/scripts/pipeline.mjs",
"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:packages": "yarn tools --test --unit",
"test:watch": "nx run-many --target=test --watch",
"test:ci": "nx affected --target=test --all --code-coverage",
"test:e2e": "yarn tools --test --e2e run-html-and-test",
"test:e2e:web": "yarn test:e2e",
"test:e2e:node": "node --no-warnings ./e2e-nodejs/index.mjs",
"test:e2e:nodejs": "yarn test:e2e:node",
"test:unit": "yarn test:packages",
"test:custom": "yarn tools --test --custom",
"test:bun": "bun ./tools/scripts/test-script.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",
"publish:app:html": "yarn node ./tools/scripts/build-html.mjs && cd dist/apps/html && vercel --prod",
"buildAndPublish": "yarn build:packages && yarn publish:packages",
"bbp": "yarn bump && yarn build && yarn publish:dev",
"gen:demo": "yarn node ./tools/scripts/gen-demo-app.mjs",
"gen:html": "yarn node ./tools/scripts/gen-html.mjs",
"gen:react": "yarn node ./tools/scripts/gen-react.mjs",
"gen:nodejs": "yarn node ./tools/scripts/gen-nodejs.mjs",
"gen:lib": "yarn node ./tools/scripts/gen-lib.mjs",
"gen:docs": "node ./tools/scripts/gen-doc.mjs",
"gen:readme": "yarn node ./tools/scripts/gen-readme.mjs",
"gen:contracts": "node node_modules/@getlit/contracts",
"gen:internal-dev": "node ./tools/scripts/gen-internal-dev.mjs",
"update:contracts": "yarn gen:contracts --update --outdir ./packages/contracts-sdk/src/abis",
"gen:config": "yarn gen:contracts --update --outdir ./tools/scripts/lit-contracts && node ./tools/scripts/gen-lit-config.mjs",
"delete": "yarn node ./tools/scripts/delete.mjs",
"delete:package": "yarn delete --package",
"delete:app": "yarn delete --app",
"update:contracts-sdk": "yarn node ./packages/contracts-sdk/tools.mjs",
"tools": "yarn node ./tools/scripts/tools.mjs",
"graph": "nx graph",
"npm:login": "npm login",
"cy:open:react": "yarn tools --test --e2e react",
"dev": "nodemon --watch packages --ext js,ts --exec \"yarn build:packages && yarn tools --yalc --publish\"",
"dev:target": "yarn tools --watch --target",
"apps": "yarn tools --dev --apps",
"watch": "yarn tools --watch",
"v": "yarn tools --v",
"bump": "yarn tools --v --patch",
"bump:minor": "yarn tools --v --minor",
"bump:major": "yarn tools --v --major",
"b": "git branch --show",
"txServer": "node tx-handler-server.mjs",
"prettier": "nx format:write --all",
"prettier:check": "nx format:check --all",
"delete:merged-branches": "git branch --merged | egrep -v '(^\\*|master|main|develop)' | xargs git branch -d",
"delete:no-merged-branches": "git branch --no-merged | egrep -v '(^\\*|master|main|develop)' | xargs git branch -d",
"cache:enable": "node ./tools/scripts/endisable-cache.mjs --enable=true",
"cache:disable": "node ./tools/scripts/endisable-cache.mjs --enable=false"
},
"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",
"@cypress/code-coverage": "^3.10.0",
"@cypress/react": "^6.2.0",
"@cypress/webpack-dev-server": "^2.3.0",
"@lit-protocol/accs-schemas": "0.0.7",
"@metamask/eth-sig-util": "5.0.2",
"@mysten/sui.js": "^0.37.1",
"@playwright/test": "^1.25.2",
"@simplewebauthn/browser": "^7.2.0",
"@simplewebauthn/typescript-types": "^7.0.0",
"@spruceid/siwe-parser": "2.0.0",
"@synthetixio/js": "^2.41.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/react": "^13.4.0",
"@types/testing-library__cypress": "^5.0.9",
"@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",
"@websaam/nx-esbuild": "^0.0.1",
"ajv": "^8.12.0",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"bitcoinjs-lib": "^6.1.0",
"blockstore-core": "^3.0.0",
"browserify-zlib": "^0.2.0",
"bs58": "^5.0.0",
"bytes32": "^0.0.3",
"cbor-web": "^9.0.1",
"commander": "^9.4.0",
"concurrently": "^7.4.0",
"core-js": "^3.6.5",
"cross-fetch": "^3.1.4",
"crypto-browserify": "^3.12.0",
"cypress-wait-until": "^1.7.2",
"cypress-watch-and-reload": "^1.10.3",
"date-and-time": "^2.4.1",
"dotenv": "^16.0.2",
"dotenv-parse-variables": "^2.0.0",
"download": "^8.0.0",
"ethers": "^5.7.1",
"etherscan-api": "^10.2.0",
"find-config": "^1.0.0",
"g": "^2.0.1",
"https-browserify": "^1.0.0",
"jose": "^4.14.4",
"jszip": "^3.10.1",
"micromodal": "^0.4.10",
"multiformats": "^9.7.1",
"nanoid": "3.3.4",
"next": "13.3.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"regenerator-runtime": "0.13.7",
"secp256k1": "^5.0.0",
"serve": "^14.0.1",
"siwe": "^2.0.5",
"siwe-recap": "0.0.2-alpha.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"synthetix-js": "^2.74.1",
"tslib": "^2.3.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uint8arrays": "^4.0.3"
},
"devDependencies": {
"@angular-devkit/core": "^17.2.1",
"@getlit/contracts": "^0.2.0",
"@nx/cypress": "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",
"@swc/core": "1.3.107",
"@synthetixio/synpress": "^2.3.3",
"@tableland/sdk": "^4.5.3",
"@types/jest": "27.4.1",
"@types/node": "18.19.18",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.9",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-jest": "27.5.1",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"cypress": "11.0.1",
"cypress-metamask": "^1.0.5-development",
"cypress-metamask-v2": "^1.7.2",
"esbuild": "0.19.12",
"esbuild-node-builtins": "^0.1.0",
"eslint": "8.48.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"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",
"jest": "27.5.1",
"lerna": "^5.4.3",
"live-server": "^1.2.2",
"lokijs": "^1.5.12",
"node-localstorage": "^3.0.5",
"nodemon": "^2.0.20",
"nx": "17.3.0",
"nx-cloud": "18.0.0",
"nx-plugin-devkit": "^1.3.1",
"path": "^0.12.7",
"prettier": "^2.6.2",
"react-router-dom": "6.11.2",
"start-server-and-test": "^1.14.0",
"supertest": "^6.3.3",
"ts-jest": "29.1.2",
"ts-node": "10.9.1",
"typedoc": "^0.23.10",
"typescript": "~4.7.2"
},
"workspaces": [
"packages/*"
]
}