-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "@animo-id/askar-webcrypto",
"version": "0.0.1",
"main": "build/index.js",
"author": "Animo Solutions <[email protected]> (https://www.animo.id)",
"repository": {
"url": "https://github.com/animo/askar-webcrypto",
"type": "git"
},
"homepage": "https://github.com/animo/askar-webcrypto",
"bugs": {
"url": "https://github.com/animo/askar-webcrypto/issues",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"files": ["build"],
"scripts": {
"build": "tsc",
"format": "biome format .",
"format:fix": "pnpm format --write",
"lint": "biome lint .",
"lint:fix": "pnpm lint --write --unsafe",
"types:check": "pnpm build --noEmit",
"test": "node --import tsx --test ./tests/*.test.ts",
"release": "release-it"
},
"dependencies": {
"@hyperledger/aries-askar-shared": "^0.2.1",
"@noble/hashes": "^1.4.0",
"@peculiar/asn1-ecc": "^2.3.8",
"@peculiar/asn1-schema": "^2.3.8",
"@peculiar/asn1-x509": "^2.3.8",
"webcrypto-core": "^1.8.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@credo-ts/askar": "0.5.3",
"@credo-ts/core": "0.5.3",
"@credo-ts/node": "0.5.3",
"@hyperledger/aries-askar-nodejs": "^0.2.1",
"@peculiar/webcrypto": "^1.5.0",
"@peculiar/x509": "^1.11.0",
"@types/node": "^20.14.2",
"release-it": "^17.3.0",
"tsx": "^4.15.2",
"typescript": "~5.4.5"
},
"peerDependencies": {
"@credo-ts/core": "*"
}
}