@bolt-liquidity-hq/cosmwasm-client 0.1.0-beta.1
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/LICENSE +201 -0
- package/README.md +41 -0
- package/dist/index.cjs +152639 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +872 -0
- package/dist/index.d.ts +872 -0
- package/dist/index.js +152622 -0
- package/dist/index.js.map +1 -0
- package/package.json +102 -0
package/package.json
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bolt-liquidity-hq/cosmwasm-client",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "Typescript SDK to interact with Bolt Liquidity on CosmWasm based blockchains.",
|
|
5
|
+
"homepage": "https://bolt-liquidity.io",
|
|
6
|
+
"repository": "",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"bolt-liquidity",
|
|
9
|
+
"blockchain",
|
|
10
|
+
"cosmwasm",
|
|
11
|
+
"defi",
|
|
12
|
+
"tooling",
|
|
13
|
+
"web3"
|
|
14
|
+
],
|
|
15
|
+
"author": "Phi Labs (https://philabs.xyz)",
|
|
16
|
+
"contributors": [
|
|
17
|
+
"Elias Poroma (https://github.com/eliasmpw)"
|
|
18
|
+
],
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "./dist/index.cjs",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"default": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/index.d.cts",
|
|
32
|
+
"default": "./dist/index.cjs"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"registry": "https://registry.npmjs.org"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsup",
|
|
48
|
+
"dev": "tsup --watch",
|
|
49
|
+
"test": "vitest",
|
|
50
|
+
"test:run": "vitest run",
|
|
51
|
+
"test:coverage": "vitest run --coverage",
|
|
52
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
53
|
+
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
54
|
+
"format": "prettier --write .",
|
|
55
|
+
"format:check": "prettier --check .",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"size": "size-limit",
|
|
58
|
+
"docs:dev": "vitepress dev docs",
|
|
59
|
+
"docs:build": "typedoc && vitepress build docs",
|
|
60
|
+
"docs:preview": "vitepress preview docs",
|
|
61
|
+
"docs:serve": "npm run docs:build && npm run docs:preview",
|
|
62
|
+
"docs:api": "typedoc",
|
|
63
|
+
"prepublishOnly": "npm run build",
|
|
64
|
+
"prepare": "husky",
|
|
65
|
+
"commit": "cz",
|
|
66
|
+
"check-exports": "attw --pack .",
|
|
67
|
+
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test:coverage && npm run build && npm run check-exports && npm run size",
|
|
68
|
+
"changeset": "changeset",
|
|
69
|
+
"version": "changeset version && npm run docs:api",
|
|
70
|
+
"release": "npm run build && changeset publish"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@archwayhq/arch3.js": "^0.7.5",
|
|
74
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
75
|
+
"@changesets/changelog-github": "^0.5.1",
|
|
76
|
+
"@changesets/cli": "^2.29.5",
|
|
77
|
+
"@commitlint/cli": "^19.8.1",
|
|
78
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
79
|
+
"@cosmjs/cosmwasm-stargate": "^0.33.1",
|
|
80
|
+
"@cosmjs/proto-signing": "^0.33.1",
|
|
81
|
+
"@eslint/js": "^9.30.1",
|
|
82
|
+
"@size-limit/file": "^11.2.0",
|
|
83
|
+
"@types/node": "^24.0.10",
|
|
84
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
85
|
+
"commitizen": "^4.3.1",
|
|
86
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
87
|
+
"dotenv": "^17.1.0",
|
|
88
|
+
"eslint": "^9.30.1",
|
|
89
|
+
"eslint-config-prettier": "^10.1.5",
|
|
90
|
+
"husky": "^9.1.7",
|
|
91
|
+
"lint-staged": "^16.1.2",
|
|
92
|
+
"prettier": "^3.6.2",
|
|
93
|
+
"size-limit": "^11.2.0",
|
|
94
|
+
"tsup": "^8.5.0",
|
|
95
|
+
"typedoc": "^0.28.7",
|
|
96
|
+
"typedoc-plugin-markdown": "^4.7.0",
|
|
97
|
+
"typescript": "^5.8.3",
|
|
98
|
+
"typescript-eslint": "^8.35.1",
|
|
99
|
+
"vitepress": "^1.6.3",
|
|
100
|
+
"vitest": "^3.2.4"
|
|
101
|
+
}
|
|
102
|
+
}
|