-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.38 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
{
"name": "@signet-sh/sdk",
"version": "0.4.4",
"description": "TypeScript SDK for Signet Orders - create, sign, and verify orders compatible with signet-types",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./constants": {
"import": "./dist/constants/index.js",
"types": "./dist/constants/index.d.ts"
},
"./signing": {
"import": "./dist/signing/index.js",
"types": "./dist/signing/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./abi": {
"import": "./dist/abi/index.js",
"types": "./dist/abi/index.d.ts"
},
"./tokens": {
"import": "./dist/tokens/index.js",
"types": "./dist/tokens/index.d.ts"
},
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./permit2": {
"import": "./dist/permit2/index.js",
"types": "./dist/permit2/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest",
"test:run": "vitest run",
"test:anvil": "vitest run --config vitest.anvil.config.ts",
"test:live": "vitest run --config vitest.live.config.ts",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"viem": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.0",
"eslint": "^9.39.2",
"prettier": "^3.4.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.54.0",
"viem": "^2.21.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
},
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/init4tech/ts.git"
},
"bugs": {
"url": "https://github.com/init4tech/ts/issues"
},
"homepage": "https://github.com/init4tech/ts#readme",
"keywords": [
"signet",
"ethereum",
"eip712",
"permit2",
"orders",
"signing",
"viem",
"blockchain"
]
}