-
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.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 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": "@yieldxyz/shield",
"version": "1.2.4",
"description": "Zero-trust transaction validation library for Yield.xyz integrations.",
"packageManager": "pnpm@10.12.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/stakekit/shield.git"
},
"homepage": "https://github.com/stakekit/shield#readme",
"bugs": {
"url": "https://github.com/stakekit/shield/issues"
},
"license": "MIT",
"author": "Yield.xyz",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"shield": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src/validators/evm/erc4626/vault-registry.json",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rslib build",
"build:cli:bundle": "esbuild src/cli.ts --bundle --platform=node --target=node20 --outfile=dist/cli.bundled.js",
"build:sea:prepare": "node --experimental-sea-config sea-config.json",
"build:sea": "node scripts/build-sea.js",
"build:binary": "pnpm build && pnpm build:cli:bundle && pnpm build:sea:prepare && pnpm build:sea",
"dev": "rslib build --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"dependencies": {
"@solana/web3.js": "^1.95.3",
"ajv": "^8.17.1",
"ethers": "^6.0.0",
"tronweb": "6.0.0"
},
"devDependencies": {
"@rslib/core": "^0.0.11",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.27.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.0.0",
"postject": "1.0.0-alpha.6",
"prettier": "^3.2.5",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}