-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "@transmute/did-key-web-crypto",
"author": "Orie Steele",
"module": "dist/did-key-web-crypto.esm.js",
"version": "0.3.0-unstable.10",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/transmute-industries/did-key.js/tree/main/packages/did-key-web-crypto",
"repository": {
"type": "git",
"url": "https://github.com/transmute-industries/did-key.js.git",
"directory": "packages/did-key-web-crypto"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"size-limit": [
{
"path": "dist/did-key-web-crypto.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/did-key-web-crypto.esm.js",
"limit": "10 KB"
}
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.12.0",
"@transmute/credentials-context": "^0.6.1-unstable.36",
"@transmute/did-context": "^0.6.1-unstable.36",
"@transmute/jose-ld": "^0.6.1-unstable.36",
"@transmute/json-web-signature": "^0.7.0-unstable.0",
"@transmute/security-context": "^0.6.1-unstable.36",
"@transmute/vc.js": "^0.2.1-unstable.12",
"axios": "^0.21.1",
"size-limit": "^4.12.0",
"ts-jest": "^27.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@transmute/did-key-common": "^0.3.0-unstable.10",
"@transmute/web-crypto-key-pair": "^0.7.0-unstable.2"
}
}