-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.24 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
{
"name": "sd-vc-lib",
"version": "4.0.8",
"description": "Issue, present and verify selectively disclosure credentials",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "rimraf dist && tsup && npx cpx 'src/types/*' dist/types",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"pretty": "prettier --write \"./**/*.{ts,js,json}\"",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"lint-staged": {
"**/*.{ts,js,json}": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Radical Ledger Technologies",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"husky": "^8.0.3",
"javascript-obfuscator": "^2.10.7",
"jest": "^30.0.5",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@bloomprotocol/ecdsa-secp256k1-signature-2019": "^0.1.3",
"@bloomprotocol/ecdsa-secp256k1-verification-key-2019": "^0.1.3",
"@transmute/ed25519-signature-2018": "^0.7.0-unstable.80",
"@transmute/vc.js": "^0.7.0-unstable.80",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"@types/secp256k1": "^4.0.1",
"@types/sha.js": "^2.4.0",
"axios": "^0.21.1",
"base-58": "^0.0.1",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"hash.js": "^1.1.7",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"sha.js": "^2.4.11"
},
"files": [
"dist",
"package.json",
"Readme.md"
],
"resolutions": {
"base58-universal": "npm:base-58@^0.0.1"
},
"pnpm": {
"overrides": {
"base58-universal": "npm:base-58@^0.0.1"
}
}
}