-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.74 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.74 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
{
"name": "@bitsocial/mintpass",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "NFT-based authentication system for PKC communities",
"author": "Bitsocial",
"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",
"pkc",
"decentralized",
"base",
"ethereum"
],
"dependencies": {
"@keyv/sqlite": "4.0.8",
"@pkcprotocol/pkc-js": "0.0.16",
"env-paths": "4.0.0",
"keyv": "5.6.0",
"viem": "2.45.0"
},
"devDependencies": {
"typescript": "6.0.3"
},
"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": "1.15.0",
"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",
"brace-expansion@npm:^1.1.7": "1.1.13",
"brace-expansion@npm:^2.0.1": "2.0.3",
"brace-expansion@npm:^5.0.2": "5.0.5",
"cookie@npm:^0.4.1": "0.7.2",
"diff@npm:^7.0.0": "8.0.3",
"follow-redirects": "1.16.0",
"handlebars": "4.7.9",
"immutable": "4.3.8",
"jose": "4.15.9",
"lodash": "4.18.0",
"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",
"node-forge": "1.4.0",
"open-graph-scraper": "6.11.0",
"picomatch@npm:^2.0.4": "2.3.2",
"picomatch@npm:^2.2.1": "2.3.2",
"picomatch@npm:^2.3.1": "2.3.2",
"picomatch@npm:^4.0.3": "4.0.4",
"protobufjs": "7.5.5",
"qs@npm:^6.4.0": "6.15.0",
"serialize-javascript@npm:^6.0.2": "7.0.5",
"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:^5.14.0": "6.24.0",
"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": "yarn@4.13.0"
}