-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@algorandfoundation/xhd-wallet-api",
"version": "1.0.3",
"description": "A Typescript implementation of Algorand ARC-52 extended hierarchical determinstic wallets.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json -f",
"test": "tsc && tsc-alias -p tsconfig.json -f && node --experimental-vm-modules node_modules/.bin/jest",
"test:cov": "tsc && tsc-alias -p tsconfig.json -f && node --experimental-vm-modules node_modules/.bin/jest --coverage"
},
"keywords": [],
"author": "Algorand Foundation",
"license": "Apache-2.0",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/bn.js": "^5.1.6",
"@types/jest": "^29.5.5",
"@types/libsodium-wrappers-sumo": "^0.7.7",
"@types/node": "^20.7.1",
"semantic-release": "^24.1.1",
"bip32-ed25519": "^0.0.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tweetnacl": "^1.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"ajv": "^8.12.0",
"algo-msgpack-with-bigint": "^2.1.1",
"bip39": "^3.1.0",
"bn.js": "^5.2.1",
"hi-base32": "^0.5.1",
"jest": "^29.7.0",
"js-sha512": "^0.8.0",
"libsodium-wrappers-sumo": "^0.7.13",
"ts-custom-error": "^3.2.0",
"ts-log": "^2.2.4"
},
"repository": "[email protected]:algorandfoundation/xHD-Wallet-API-ts.git",
"files": [
"dist",
"README.md",
"LICENSE"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): xHD Wallet API \n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"successComment": false
}
]
],
"branches": [
"release/*",
{
"name": "main",
"prerelease": "canary"
}
]
}
}