-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
82
83
84
85
86
{
"name": "@algorandfoundation/liquid-auth-use-wallet-client",
"version": "1.2.0",
"description": "A TypeScript library for Liquid Auth's Use-Wallet Client",
"main": "lib/index.js",
"type": "module",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json -f",
"lint": "eslint 'src/**/*.ts'",
"test": "vitest",
"clean": "rm -rf lib",
"coverage": "vitest run --coverage"
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./interfaces": {
"types": "./lib/types/interfaces.d.ts",
"default": "./lib/interfaces.js"
}
},
"keywords": [],
"author": "Algorand Foundation",
"license": "AGPL-3.0",
"dependencies": {
"@algorandfoundation/liquid-client": "github:algorandfoundation/liquid-auth-js",
"@algorandfoundation/provider": "github:algorandfoundation/wallet-provider-ts",
"cbor-x": "^1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@vitest/coverage-v8": "^2.1.5",
"algosdk": "^3.1.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"semantic-release": "^24.2.0",
"tsc-alias": "^1.8.10",
"typescript": "^4.9.5",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.5"
},
"repository": "[email protected]:algorandfoundation/liquid-auth-use-wallet-client",
"files": [
"lib",
"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): Liquid Auth Use-Wallet Client \n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"successComment": false
}
]
],
"branches": [
"release/*",
{
"name": "main",
"prerelease": "canary"
}
]
}
}