-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.59 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
{
"name": "@algorandfoundation/wallet-provider",
"version": "1.0.0-canary.5",
"description": "Abstract interface for compatibility between wallets",
"license": "Apache-2.0",
"author": "Algorand Foundation",
"repository": {
"type": "git",
"url": "https://github.com/algorandfoundation/wallet-provider.git"
},
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"*.d.ts.map",
"src/types.ts",
"src/index.ts",
"src/crypto.ts"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:github": "oxlint --format=github",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"docs": "typedoc",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"bench": "vitest bench",
"release": "semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.5",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"semantic-release": "^25.0.3",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "oxlint",
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"publishCmd": "pnpm run fmt"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): Wallet Provider \n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"successComment": false
}
]
],
"branches": [
"release",
{
"name": "main",
"prerelease": "canary"
}
]
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}