This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
62 lines (62 loc) · 2.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
{
"name": "lit-js-sdk",
"version": "1.1.250",
"description": "LIT Javascript SDK",
"source": "src/index.js",
"main": "build/index.js",
"scripts": {
"start": "concurrently \"microbundle watch -o build/index.js -f cjs\" \"nodemon -i build esbuild-nodejs.js\" \"nodemon -i build esbuild-web.js\" \"serve -p 3050 build\" \"sleep 3; open http://localhost:3050/manual_tests.html\" \"sleep 3; open http://localhost:3050/manual_tests_evm_contract_conditions.html\"",
"startNoCompressUseThisIfYouGetATerserErrorMaximumCallStackSizeExceeded": "microbundle watch --no-compress ",
"buildWithMicrobundle": "microbundle build -o build/index.js -f cjs",
"buildWebWithParcel": "parcel build --global LitJsSdk -d build --out-file index.web.js --public-url ./ src/index.js",
"cdnDeploy": "yarn build; yarn buildWeb; yarn buildNode",
"build": "microbundle build -o build/index.js -f cjs",
"buildWeb": "node esbuild-web.js",
"buildNode": "node esbuild-nodejs.js",
"test": "node --experimental-specifier-resolution=node tests/provisioningAndSigning.js",
"versionBump": "node node_modules/semver-bump/index.js ../../package.json; npx genversion -e src/version.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LIT-Protocol/lit-js-sdk"
},
"author": "Chris Cassano <[email protected]> (https://github.com/glitch003)",
"bugs": {
"url": "https://github.com/LIT-Protocol/lit-js-sdk/issues"
},
"homepage": "https://github.com/LIT-Protocol/lit-js-sdk",
"keywords": [
"library"
],
"license": "MIT",
"devDependencies": {
"esbuild": "^0.14.25",
"esbuild-node-builtins": "^0.1.0",
"genversion": "^3.0.1",
"microbundle": "^0.13.0",
"semver-bump": "^1.0.0",
"standard": "^16.0.3"
},
"dependencies": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/contracts": "^5.2.0",
"@ethersproject/hash": "^5.4.0",
"@ethersproject/providers": "^5.2.0",
"@ethersproject/strings": "^5.5.0",
"@ethersproject/units": "^5.4.0",
"@ethersproject/wallet": "^5.2.0",
"@walletconnect/ethereum-provider": "1.7.8",
"buffer": "^6.0.3",
"bufferutil": "^4.0.6",
"cross-blob": "^3.0.1",
"jszip": "^3.6.0",
"lit-connect-modal": "^0.1.11",
"lit-siwe": "^1.1.8",
"node-fetch": "^3.2.3",
"pako": "^2.0.4",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"utf-8-validate": "^5.0.8"
}
}