-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.25 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
{
"name": "@ethereum-sourcify/clear-signing",
"version": "0.2.2",
"description": "Ethereum clear signing library for human-readable transaction previews",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"react-native": "./dist/index.cjs",
"exports": {
".": {
"react-native": "./dist/index.cjs",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./filesystem": {
"import": {
"types": "./dist/filesystem.d.ts",
"default": "./dist/filesystem.js"
},
"require": {
"types": "./dist/filesystem.d.cts",
"default": "./dist/filesystem.cjs"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcifyeth/clear-signing.git"
},
"bugs": {
"url": "https://github.com/sourcifyeth/clear-signing/issues"
},
"homepage": "https://github.com/sourcifyeth/clear-signing#readme",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier \"**/*.{ts,js,md,json}\" --write",
"fix:eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --fix",
"check": "npm run check:types && npm run check:prettier && npm run check:eslint",
"check:types": "tsc --noEmit -p tsconfig.check.json",
"check:prettier": "prettier \"**/*.{ts,js,md,json}\" --check",
"check:eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\""
},
"keywords": [
"ethereum",
"clear-signing",
"erc-7730",
"transaction",
"wallet"
],
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.9.7",
"@noble/hashes": "^1.7.1"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "^25.5.0",
"eslint": "9.39.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"prettier": "3.8.1",
"tsup": "^8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22.0.0"
}
}