-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.02 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
{
"name": "blockchain-wallet-validator",
"version": "1.1.0",
"description": "A comprehensive blockchain wallet address validator",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "pnpm run build",
"size": "pnpm build && size-limit",
"analyze": "pnpm build && size-limit --why"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergical/blockchain-wallet-validator.git"
},
"bugs": {
"url": "https://github.com/sergical/blockchain-wallet-validator/issues"
},
"homepage": "https://github.com/sergical/blockchain-wallet-validator#readme",
"keywords": [
"blockchain",
"wallet",
"address",
"validator",
"crypto",
"ethereum",
"bitcoin",
"solana",
"cardano",
"polkadot",
"cosmos",
"stellar",
"algorand",
"ripple",
"evm",
"ens",
"ican"
],
"author": "Sergiy Dybskiy",
"license": "CORE",
"dependencies": {
"bs58check": "^4.0.0",
"ethereum-cryptography": "^3.0.0"
},
"devDependencies": {
"@size-limit/esbuild": "^11.1.6",
"@size-limit/esbuild-why": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.14.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}