@bolt-liquidity-hq/cosmwasm-client 0.1.0-beta.2 → 0.1.0-beta.21

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/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@bolt-liquidity-hq/cosmwasm-client",
3
- "version": "0.1.0-beta.2",
3
+ "version": "0.1.0-beta.21",
4
4
  "description": "Typescript SDK to interact with Bolt Liquidity on CosmWasm based blockchains.",
5
5
  "homepage": "",
6
- "repository": "",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/phi-labs-ltd/bolt-ts-sdk.git",
9
+ "directory": "packages/cosmwasm-client"
10
+ },
7
11
  "keywords": [
8
12
  "bolt-liquidity",
9
13
  "blockchain",
@@ -38,68 +42,47 @@
38
42
  },
39
43
  "publishConfig": {
40
44
  "access": "public",
41
- "registry": "https://registry.npmjs.org"
45
+ "registry": "https://registry.npmjs.org",
46
+ "provenance": true
42
47
  },
43
48
  "files": [
44
- "dist"
49
+ "dist",
50
+ "LICENSE",
51
+ "README.md"
45
52
  ],
53
+ "dependencies": {
54
+ "@archwayhq/arch3.js": "^0.7.5",
55
+ "@cosmjs/cosmwasm-stargate": "^0.33.1",
56
+ "@cosmjs/encoding": "^0.36.0",
57
+ "@cosmjs/proto-signing": "^0.33.1",
58
+ "bignumber.js": "^9.3.1",
59
+ "cosmjs-types": "^0.10.1",
60
+ "@bolt-liquidity-hq/core": "0.1.0-beta.21"
61
+ },
62
+ "devDependencies": {},
63
+ "peerDependencies": {},
64
+ "peerDependenciesMeta": {},
65
+ "sideEffects": false,
46
66
  "scripts": {
47
67
  "build": "tsup",
48
68
  "dev": "tsup --watch",
49
- "test": "vitest",
50
- "test:run": "vitest run",
69
+ "test": "pnpm test:queries",
70
+ "test:watch": "pnpm test:queries:watch",
71
+ "test:all": "vitest run",
72
+ "test:all:watch": "vitest",
73
+ "test:queries": "vitest run src/tests/*.query.*.test.ts",
74
+ "test:queries:watch": "vitest src/tests/*.query.*.test.ts",
75
+ "test:txs": "vitest run src/tests/*.tx.*.test.ts",
76
+ "test:txs:watch": "vitest src/tests/*.tx.*.test.ts",
51
77
  "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 .",
78
+ "lint": "eslint .",
79
+ "lint:fix": "eslint . --fix",
80
+ "format": "prettier --write . --ignore-path ../../.prettierignore",
81
+ "format:check": "prettier --check . --ignore-path ../../.prettierignore",
56
82
  "typecheck": "tsc --noEmit",
83
+ "check-exports": "attw --pack .",
57
84
  "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
85
  "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
- "dependencies": {
73
- "@archwayhq/arch3.js": "^0.7.5",
74
- "@cosmjs/cosmwasm-stargate": "^0.33.1",
75
- "@cosmjs/proto-signing": "^0.33.1"
76
- },
77
- "devDependencies": {
78
- "@arethetypeswrong/cli": "^0.18.2",
79
- "@changesets/changelog-github": "^0.5.1",
80
- "@changesets/cli": "^2.29.5",
81
- "@commitlint/cli": "^19.8.1",
82
- "@commitlint/config-conventional": "^19.8.1",
83
- "@eslint/js": "^9.30.1",
84
- "@size-limit/file": "^11.2.0",
85
- "@types/node": "^24.0.10",
86
- "@vitest/coverage-v8": "^3.2.4",
87
- "commitizen": "^4.3.1",
88
- "cz-conventional-changelog": "^3.3.0",
89
- "dotenv": "^17.1.0",
90
- "eslint": "^9.30.1",
91
- "eslint-config-prettier": "^10.1.5",
92
- "husky": "^9.1.7",
93
- "lint-staged": "^16.1.2",
94
- "prettier": "^3.6.2",
95
- "size-limit": "^11.2.0",
96
- "tsup": "^8.5.0",
97
- "typedoc": "^0.28.7",
98
- "typedoc-plugin-markdown": "^4.7.0",
99
- "typescript": "^5.8.3",
100
- "typescript-eslint": "^8.35.1",
101
- "vitepress": "^1.6.3",
102
- "vitest": "^3.2.4"
103
- },
104
- "sideEffects": false
105
- }
86
+ "ci": "pnpm run build && pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run check-exports && pnpm run size && pnpm run test"
87
+ }
88
+ }