-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.44 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.44 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
{
"name": "@bitsocialnet/mintpass",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "NFT-based authentication system for Plebbit communities",
"author": "Plebbit Labs",
"license": "MIT",
"exports": {
"./challenge": {
"types": "./dist/challenge/index.d.ts",
"default": "./dist/challenge/index.js"
}
},
"workspaces": [
"contracts",
"challenge"
],
"scripts": {
"install:all": "corepack yarn install && corepack yarn install:contracts && corepack yarn install:challenge",
"install:contracts": "cd contracts && corepack yarn install",
"install:challenge": "cd challenge && corepack yarn install",
"build": "corepack yarn build:contracts && corepack yarn build:challenge && corepack yarn publish:challenge",
"build:contracts": "cd contracts && corepack yarn compile",
"build:challenge": "cd challenge && corepack yarn build",
"publish:challenge": "rm -rf dist/challenge && mkdir -p dist/challenge && cp -R challenge/dist/* dist/challenge/",
"test": "corepack yarn test:contracts",
"test:contracts": "cd contracts && corepack yarn test",
"test:challenge": "cd challenge && corepack yarn test",
"test:challenge:local": "cd challenge && corepack yarn test:local",
"deploy:base-sepolia": "cd contracts && corepack yarn deploy:base-sepolia",
"deploy:base": "cd contracts && corepack yarn deploy:base",
"clean": "corepack yarn clean:contracts && corepack yarn clean:challenge",
"clean:contracts": "cd contracts && corepack yarn clean",
"clean:challenge": "cd challenge && corepack yarn clean"
},
"keywords": [
"nft",
"authentication",
"plebbit",
"decentralized",
"base",
"ethereum"
],
"dependencies": {
"@keyv/sqlite": "^4.0.5",
"@plebbit/plebbit-js": "https://codeload.github.com/plebbit/plebbit-js/tar.gz/a21d896bd55c76070758dae65dc0693d1c3726db",
"env-paths": "^3.0.0",
"keyv": "5.5.0",
"viem": "2.45.0"
},
"devDependencies": {
"typescript": "^5.3.0"
},
"engines": {
"node": ">=22.0.0",
"yarn": ">=4.0.0"
},
"resolutions": {
"@conventional-changelog/git-client": "2.0.0",
"@isaacs/brace-expansion": "5.0.1",
"@tootallnate/once@npm:1": "3.0.1",
"ajv@npm:^6.12.6": "6.14.0",
"ajv@npm:^8.0.1": "8.18.0",
"axios@npm:^1.5.1": "1.13.5",
"axios@npm:^1.7.2": "1.13.5",
"bn.js@npm:4.11.6": "4.12.3",
"bn.js@npm:^4.11.9": "4.12.3",
"bn.js@npm:^5.1.2": "5.2.3",
"bn.js@npm:^5.2.0": "5.2.3",
"bn.js@npm:^5.2.1": "5.2.3",
"cookie@npm:^0.4.1": "0.7.2",
"diff@npm:^7.0.0": "8.0.3",
"immutable": "4.3.8",
"jose": "4.15.9",
"minimatch@npm:^3.0.4": "3.1.4",
"minimatch@npm:^3.0.5": "3.1.4",
"minimatch@npm:^3.1.1": "3.1.4",
"minimatch@npm:^3.1.2": "3.1.4",
"minimatch@npm:2 || 3": "3.1.4",
"minimatch@npm:^5.0.1": "5.1.8",
"minimatch@npm:^5.1.6": "5.1.8",
"minimatch@npm:^9.0.4": "9.0.7",
"minimatch@npm:^9.0.5": "9.0.7",
"minimatch@npm:*": "10.2.4",
"open-graph-scraper": "6.11.0",
"qs@npm:^6.4.0": "6.15.0",
"serialize-javascript@npm:^6.0.2": "7.0.3",
"tar@npm:^6.0.2": "7.5.11",
"tar@npm:^6.1.2": "7.5.11",
"tar@npm:^6.1.11": "7.5.11",
"tar@npm:^6.2.1": "7.5.11",
"tmp@npm:0.0.33": "0.2.4",
"undici@npm:^6.21.2": "6.24.0",
"undici@npm:^7.16.0": "7.24.0",
"undici@npm:^7.19.0": "7.24.0",
"ws@npm:8.5.0": "8.19.0",
"ws@npm:8.13.0": "8.19.0"
},
"packageManager": "[email protected]"
}