-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 2.68 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "iso-signatures",
"type": "module",
"version": "0.5.1",
"description": "Signatures tooling.",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"homepage": "https://github.com/hugomrdias/iso-repo/tree/main/packages/iso-signatures",
"repository": {
"url": "hugomrdias/iso-repo",
"directory": "packages/iso-signatures"
},
"keywords": [
"elliptic",
"curve",
"cryptography",
"edwards",
"p256",
"p384",
"p521",
"secp256r1",
"secp256k1",
"ed25519",
"ecdsa",
"eddsa",
"rsa",
"signatures"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
},
"./types": {
"types": "./dist/src/types.d.ts"
},
"./signers/*": {
"types": "./dist/src/signers/*",
"default": "./src/signers/*"
},
"./verifiers/*": {
"types": "./dist/src/verifiers/*",
"import": "./src/verifiers/*"
},
"./asn1": {
"types": "./dist/src/asn1.d.ts",
"import": "./src/asn1.js"
},
"./spki": {
"types": "./dist/src/spki.d.ts",
"import": "./src/spki.js"
}
},
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/src/index"
],
"types": [
"dist/src/types"
],
"signers/*": [
"dist/src/signers/*"
],
"verifiers/*": [
"dist/src/verifiers/*"
],
"asn1": [
"./dist/src/asn1"
],
"spki": [
"./dist/src/spki"
]
}
},
"files": [
"src",
"dist/src/**/*.d.ts",
"dist/src/**/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"test": "tsc --build && pnpm run test:node && pnpm run test:browser",
"test:node": "pw-test 'test/**/!(*.browser).test.js' --mode node",
"test:browser": "pw-test 'test/**/!(*.node).test.js'"
},
"dependencies": {
"@noble/ed25519": "^3.0.1",
"@noble/hashes": "^2.0.0",
"@noble/secp256k1": "^3.0.0",
"eventemitter3": "5.0.1",
"iso-base": "workspace:^",
"iso-did": "workspace:^",
"ox": "^0.14.27"
},
"devDependencies": {
"@types/assert": "^1.5.11",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"assert": "^2.1.0",
"mocha": "^11.7.5",
"playwright-test": "^14.1.13",
"type-fest": "^5.7.0",
"typescript": "6.0.3",
"viem": "^2.52.2"
},
"publishConfig": {
"provenance": true
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert",
"type-fest",
"mocha",
"eventemitter3"
]
}
}