This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.64 KB
/
package.json
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
{
"name": "@dcx-protocol/root",
"version": "7.0.1",
"description": "DCX: Decentralized Credential Exchange. DWN protocol for verifiable credential exchange.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"audit-ci": "audit-ci --config ./audit-ci.json",
"build": "pnpm --recursive --stream build",
"build:tests:node": "pnpm --recursive --stream build:tests:node",
"clean": "pnpm npkill -d $(pwd)/packages -t dist && pnpm npkill -d $(pwd) -t node_modules",
"coverage": "codecov upload-process -t $CODECOV_TOKEN -r TBD54566975/incubation-dcx",
"md5": "tsx scripts/md5.ts",
"lint": "pnpm --recursive --stream lint",
"lint:fix": "pnpm --recursive --stream lint:fix",
"publish:all": "pnpm --filter applicant publish && pnpm --filter common publish && pnpm --filter issuer publish && pnpm --filter server publish",
"test": "pnpm --recursive --stream test",
"test:node": "pnpm --recursive --stream test:node",
"workflow": "pnpm lint && pnpm install -r && pnpm lint && pnpm build && pnpm build:tests:node",
"build-test": "pnpm --recursive --stream build && pnpm --recursive --stream build:tests:node && pnpm --recursive --stream test:node",
"version": "tsx scripts/version.ts",
"applicant": "pnpm --filter applicant",
"common": "pnpm --filter common",
"issuer": "pnpm --filter issuer",
"_server": "pnpm --filter server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TBD54566975/incubation-dcx.git"
},
"keywords": [
"decentralized",
"decentralized-applications",
"decentralized-identity",
"decentralized-web",
"vcs",
"verifiable credentials",
"web5",
"decentralized credential exchange",
"dwn",
"dweb node",
"dwn protocol"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0 || <22.0.0"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Bryan Nonni",
"url": "https://github.com/bnonni"
},
{
"name": "Ian Patton",
"url": "https://github.com/ianpatton"
}
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@npmcli/package-json": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"audit-ci": "^7.1.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.9.0",
"npkill": "^0.12.2"
},
"resolutions": {
"@tbd54566975/dwn-sdk-js": "^0.4.6",
"@web5/agent": "^0.6.1",
"@web5/user-agent": "^0.5.1",
"@web5/common": "^1.0.2",
"@web5/crypto": "^1.0.4",
"@web5/dids": "^1.1.4"
},
"dependencies": {
"typescript": "^5.5.4"
}
}