forked from TBD54566975/incubation-dcx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.36 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
{
"name": "@dcx-protocol/root",
"version": "0.0.9",
"description": "DCX: Decentralized Credential Exchange. DWN protocol for verifiable credential exchange.",
"type": "module",
"workspaces": [
"packages/applicant",
"packages/common",
"packages/issuer"
],
"scripts": {
"clean": "pnpm npkill -d $(pwd)/packages -t dist && pnpm npkill -d $(pwd) -t node_modules",
"build": "pnpm --recursive --stream build",
"build:tests:node": "pnpm --recursive build:tests:node",
"test:node": "pnpm --recursive test:node",
"test": "pnpm --recursive test",
"lint": "pnpm --recursive lint",
"lint:fix": "pnpm --recursive lint:fix",
"version": "tsx scripts/version.ts",
"audit-ci": "audit-ci --config ./audit-ci.json",
"build:applicant": "pnpm --filter applicant build",
"build:common": "pnpm --filter common build",
"build:issuer": "pnpm --filter issuer build",
"test:node:applicant": "pnpm --filter applicant test:node",
"test:node:common": "pnpm --filter common test:node",
"test:node:issuer": "pnpm --filter issuer test:node",
"coverage": "codecov upload-process -t $CODECOV_TOKEN -r TBD54566975/incubation-dcx",
"workflow": "pnpm install --frozen-lockfile && pnpm build && pnpm build:tests:node && pnpm test:node"
},
"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.16.1",
"audit-ci": "^7.1.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.8.0",
"npkill": "^0.12.2"
},
"pnpm": {
"overrides": {
"express@<4.19.2": ">=4.19.2",
"ws@<8.17.1": ">=8.17.1"
}
}
}