-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "@patronumlabs/nick-method",
"version": "1.1.0",
"description": "NPM package that facilitates generating EVM transactions adhering to Nick-Method",
"author": "Yamen Merhi (0xYamen)",
"homepage": "https://github.com/Patronum-Labs/nick-method#readme",
"bugs": {
"url": "https://github.com/Patronum-Labs/nick-method/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Patronum-Labs/nick-method.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": false,
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"prettier": "prettier -w .",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
},
"keywords": [
"ethereum",
"transactions",
"eip-155",
"nick method",
"nick factory",
"keyless execution",
"type 0 transactions",
"legacy transactions",
"pre-eip155 transaction",
"unprotected transactions",
"multi chain deployment",
"raw transaction"
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.10",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^2.0.1"
},
"dependencies": {
"@ethereumjs/common": "3.0.2",
"@ethereumjs/tx": "4.0.2",
"@ethereumjs/util": "8.0.3"
}
}