forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.95 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.95 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
{
"name": "credo-ts",
"private": true,
"license": "Apache-2.0",
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
"repository": {
"url": "https://github.com/openwallet-foundation/credo-ts",
"type": "git"
},
"scripts": {
"types:check": "pnpm types:check:build && pnpm types:check:tests",
"types:check:tests": "tsc -p tsconfig.test.json --noEmit",
"types:check:build": "pnpm -r --parallel exec tsc --noEmit",
"style:check": "biome check --unsafe",
"style:fix": "biome check --write --unsafe",
"clean": "pnpm -r --parallel run clean",
"build": "pnpm -r --parallel run build",
"test:unit": "jest --testPathIgnorePatterns 'e2e.test.ts$'",
"test:e2e": "jest --testMatch '**/?(*.)e2e.test.ts'",
"test": "jest",
"validate": "pnpm types:check && pnpm style:check",
"run-mediator": "ts-node ./samples/mediator.ts",
"release": "pnpm build && pnpm changeset publish --no-git-tag",
"changeset-version": "pnpm changeset version && pnpm style:fix"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.4",
"@jest/types": "^29.6.3",
"@openwallet-foundation/askar-nodejs": "catalog:",
"@types/cors": "^2.8.19",
"@types/express": "catalog:",
"@types/jest": "^29.5.14",
"@types/node": "catalog:",
"@types/supertest": "^6.0.3",
"@types/varint": "^6.0.3",
"@types/ws": "catalog:",
"cors": "^2.8.5",
"express": "catalog:",
"jest": "^29.7.0",
"nock": "catalog:",
"rxjs": "catalog:",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "catalog:",
"tsyringe": "catalog:",
"typescript": "catalog:",
"undici": "^6.21.3",
"ws": "catalog:"
},
"resolutions": {
"undici": "^6.20.1"
},
"engines": {
"node": ">=20"
}
}