@jibidieuw/dexes 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +169 -0
- package/dist/index.d.mts +4749 -0
- package/dist/index.d.ts +4749 -0
- package/dist/index.js +4056 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4013 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jibidieuw/dexes",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "TypeScript SDK for managing OpenPGP keys on Ethereum through Web3PGP smart contracts",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/cryptogram/dexes.git"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/cryptogram/dexes",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/cryptogram/dexes/issues"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"ethereum",
|
|
31
|
+
"web3",
|
|
32
|
+
"openpgp",
|
|
33
|
+
"cryptography",
|
|
34
|
+
"blockchain",
|
|
35
|
+
"pki",
|
|
36
|
+
"edi",
|
|
37
|
+
"viem",
|
|
38
|
+
"typescript"
|
|
39
|
+
],
|
|
40
|
+
"author": "Cryptogram Contributors",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"build:contracts": "cd ../../contracts && forge build",
|
|
48
|
+
"update-abis": "npm run build:contracts && node scripts/update-abis.js",
|
|
49
|
+
"clean": "find . -name '*.js' -o -name '*.d.ts' -o -name '*.map' | grep -E '(src|__tests__)' | xargs rm -f",
|
|
50
|
+
"clean:broadcasts": "rm -rf ../../contracts/broadcast/DeployTestEnvironment.s.sol",
|
|
51
|
+
"typecheck": "tsc --noEmit",
|
|
52
|
+
"test": "jest --runInBand",
|
|
53
|
+
"test:unit": "jest --runInBand --testPathIgnorePatterns=integration",
|
|
54
|
+
"test:integration": "npm run update-abis && jest --config jest.integration.config.js",
|
|
55
|
+
"test:all": "npm run test:unit && npm run test:integration"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/jest": "^30.0.0",
|
|
59
|
+
"@types/node": "^24.8.1",
|
|
60
|
+
"@types/p-limit": "^2.2.0",
|
|
61
|
+
"jest": "^30.2.0",
|
|
62
|
+
"ts-jest": "^29.4.5",
|
|
63
|
+
"tsup": "^8.5.1",
|
|
64
|
+
"typescript": "^5.9.3"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"openpgp": "^6.1.0",
|
|
68
|
+
"p-limit": "^2.3.0",
|
|
69
|
+
"viem": "^2.21.0"
|
|
70
|
+
}
|
|
71
|
+
}
|