-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 5.29 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 5.29 KB
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
{
"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 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",
"test:health": "DEBUG=false node ./local-tests/build.mjs && dotenvx run --env-file=.env -- node ./local-tests/build/health/index.mjs",
"ci:health": "DEBUG=false node ./local-tests/build.mjs && node ./local-tests/build/health/index.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",
"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.36",
"@lit-protocol/contracts": "0.0.74",
"@lit-protocol/lit-status-sdk": "^0.1.8",
"@metamask/eth-sig-util": "5.0.2",
"@mysten/sui.js": "^0.37.1",
"@openagenda/verror": "^3.1.4",
"@simplewebauthn/browser": "^7.2.0",
"@simplewebauthn/typescript-types": "^7.0.0",
"@walletconnect/ethereum-provider": "2.9.2",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/types": "2.9.2",
"@walletconnect/utils": "2.9.2",
"@walletconnect/web3wallet": "1.8.8",
"ajv": "^8.12.0",
"base64url": "^3.0.1",
"bech32": "^2.0.0",
"cbor-web": "^9.0.2",
"cross-fetch": "3.1.8",
"date-and-time": "^2.4.1",
"depd": "^2.0.0",
"ethers": "^5.7.1",
"eventemitter3": "^5.0.1",
"jose": "^4.14.4",
"micromodal": "^0.4.10",
"multiformats": "^9.7.1",
"pako": "^2.1.0",
"siwe": "^2.3.2",
"siwe-recap": "0.0.2-alpha.0",
"tslib": "^2.7.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typestub-ipfs-only-hash": "^4.0.0",
"uint8arrays": "^4.0.3"
},
"devDependencies": {
"@nx/devkit": "17.3.0",
"@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.95.3",
"@types/depd": "^1.1.36",
"@types/events": "^3.0.3",
"@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",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"esbuild": "^0.17.3",
"esbuild-node-builtins": "^0.1.0",
"esbuild-node-externals": "^1.14.0",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "8.48.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"inquirer": "^9.2.21",
"ipfs-only-hash": "^4.0.0",
"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",
"ts-jest": "29.2.5",
"typedoc": "^0.26.6",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "5.5.4"
},
"workspaces": [
"packages/*"
]
}