-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.4 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.4 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
{
"name": "@bitsocial/flags-challenge",
"version": "0.1.0",
"description": "Verified flag issuer challenge for Bitsocial communities",
"keywords": [
"bitsocial",
"bitsocial-protocol",
"challenge",
"flags",
"country-flags",
"imageboard"
],
"author": "Bitsocial Forge",
"license": "GPL-3.0-or-later",
"type": "module",
"engines": {
"node": ">=22"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitsocialnet/flags-challenge.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "yarn clean && node esbuild.config.js && tsc -p tsconfig.json --emitDeclarationOnly",
"clean": "rm -rf dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage.enabled",
"coverage:badge": "node scripts/write-coverage-badge.mjs",
"type-check": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "HUSKY=0 release-it --config .release-it.json"
},
"dependencies": {
"@noble/ed25519": "1.7.5",
"@pkcprotocol/pkc-logger": "0.1.0",
"cborg": "4.3.2",
"uint8arrays": "5.1.0",
"zod": "4.3.5"
},
"devDependencies": {
"@pkcprotocol/pkc-js": "0.0.37",
"@release-it/conventional-changelog": "10.0.1",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.0.16",
"esbuild": "0.27.2",
"prettier": "3.8.1",
"release-it": "19.2.3",
"typescript": "6.0.2",
"vitest": "4.0.16"
},
"resolutions": {
"@conventional-changelog/git-client@npm:^1.0.0": "npm:2.7.0",
"@libp2p/gossipsub@npm:15.0.21": "npm:15.0.23",
"@libp2p/kad-dht@npm:^16.2.0": "npm:16.2.6",
"@protobufjs/utf8@npm:^1.1.0": "npm:1.1.1",
"axios@npm:^1.7.2": "npm:1.15.2",
"basic-ftp@npm:^5.0.2": "npm:5.3.1",
"ip-address@npm:^10.0.1": "npm:10.1.1",
"protobufjs@npm:^6.10.2": "npm:7.5.8",
"undici@npm:6.22.0": "npm:6.25.0",
"uuid@npm:^11.0.0": "npm:11.1.1",
"uuid@npm:13.0.0": "npm:13.0.1",
"ws@npm:^8.5.0": "npm:8.20.1",
"ws@npm:^8.18.3": "npm:8.20.1"
},
"packageManager": "yarn@4.13.0"
}