-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "@dexalot/dexalot-sdk",
"version": "0.5.17",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dexalot/dexalot-sdk-typescript"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./internal": {
"types": "./dist/internal.d.ts",
"import": "./dist/internal.js",
"require": "./dist/internal.js"
},
"./secrets-vault": {
"types": "./dist/secrets-vault.d.ts",
"import": "./dist/secrets-vault.js",
"require": "./dist/secrets-vault.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "tsc -p tsconfig.build.json",
"test": "jest",
"test:unit": "jest tests/unit",
"test:int": "jest tests/integration",
"secrets-vault": "node scripts/secrets_vault_cli.mjs",
"version:validate": "node scripts/version_manager.mjs validate",
"version:bump:patch": "node scripts/version_manager.mjs bump patch"
},
"dependencies": {
"axios": "1.14.0",
"dotenv": "16.6.1",
"ethers": "6.16.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.19.15",
"jest": "29.7.0",
"ts-jest": "29.4.9"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}