forked from LIT-Protocol/developer-guides-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.54 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
{
"name": "lit-developer-guides-code",
"private": true,
"workspaces": [
"btc-trigger/nodejs",
"conditional-signing/browser",
"conditional-signing/nodejs",
"custom-auth/browser",
"decrypt-api-key-in-action/nodejs",
"eip-191-signing/browser",
"eip-191-signing/nodejs",
"lit-action-claim-key/nodejs",
"lit-action-using-fetch/browser",
"lit-action-using-fetch/nodejs",
"lit-relayer/mintPKPThroughRelayer/browser",
"paying-for-lit/nodejs",
"payment-delegation-db-relayer/nodejs",
"session-signatures/getLitActionSessionSigs",
"session-signatures/getPkpSessionSigs",
"session-signatures/getSessionSigs",
"sign-and-combine-ecdsa/nodejs",
"siws-accs/browser",
"siws-authentication/browser",
"siws-encryption/browser",
"siws-session-sigs/browser",
"starter-guides/browser",
"starter-guides/nodejs",
"templates/browser",
"templates/nodejs",
"wrapped-keys/eip-712/nodejs",
"wrapped-keys/nodejs"
],
"scripts": {
"install:all": "yarn workspaces focus --all",
"upgrade:all": "yarn workspaces foreach --all exec yarn up \"@lit-protocol/*@latest\"",
"upgrade:all:alpha": "yarn workspaces foreach --all exec yarn up \"@lit-protocol/*@alpha\"",
"clean": "yarn workspaces foreach --all exec rimraf node_modules && yarn rimraf node_modules",
"test-lit": "nx run-many --target=test-lit --all --parallel=1 --exclude=templates-nodejs,starter-guides-nodejs"
},
"devDependencies": {
"node-gyp": "^11.0.0",
"nx": "19.6.3",
"rimraf": "^6.0.1"
}
}