@scallop-io/scallop-deepbook-kit 0.4.2 → 0.4.3

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.
Files changed (1) hide show
  1. package/package.json +39 -37
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@scallop-io/scallop-deepbook-kit",
4
- "version": "0.4.2",
4
+ "version": "0.4.3",
5
5
  "description": "A toolkit for integrating Scallop with DeepBook functionality",
6
6
  "keywords": [
7
7
  "scallop",
@@ -37,28 +37,46 @@
37
37
  "dist",
38
38
  "src"
39
39
  ],
40
+ "scripts": {
41
+ "build": "pnpm run build:prod",
42
+ "build:prod": "tsup --env.NODE_ENV production",
43
+ "build:dev": "tsup",
44
+ "build:watch": "tsc --watch",
45
+ "example:toolkit": "tsx src/examples/toolkit-demo.ts",
46
+ "clean": "rm -rf dist",
47
+ "lint": "eslint src --ext .ts",
48
+ "format:fix": "prettier --ignore-path 'dist/* docs/*' --write '**/*.{ts,json,md}'",
49
+ "lint:fix": "eslint src --ext .ts --fix",
50
+ "format": "prettier --write \"src/**/*.ts\"",
51
+ "format:check": "prettier --check \"src/**/*.ts\"",
52
+ "test": "vitest",
53
+ "test:watch": "vitest --watch",
54
+ "test:coverage": "vitest --coverage",
55
+ "prepare": "husky install",
56
+ "prepublishOnly": "pnpm run clean && pnpm run build:prod"
57
+ },
40
58
  "devDependencies": {
41
- "@types/node": "^24.10.0",
42
- "@typescript-eslint/eslint-plugin": "^8.46.4",
43
- "@typescript-eslint/parser": "^8.46.4",
44
- "@vitest/coverage-v8": "^4.0.18",
45
- "@vitest/ui": "^4.0.18",
46
- "eslint": "^9.39.1",
47
- "eslint-config-prettier": "^10.1.8",
48
- "eslint-plugin-prettier": "^5.5.4",
49
- "husky": "^8.0.3",
50
- "prettier": "^3.6.2",
51
- "tsup": "^8.5.1",
52
- "tsx": "^4.19.2",
53
- "typescript": "^5.9.3",
54
- "vitest": "^4.0.18"
59
+ "@types/node": "24.10.1",
60
+ "@typescript-eslint/eslint-plugin": "8.46.4",
61
+ "@typescript-eslint/parser": "8.46.4",
62
+ "@vitest/coverage-v8": "4.0.18",
63
+ "@vitest/ui": "4.0.18",
64
+ "eslint": "9.39.1",
65
+ "eslint-config-prettier": "10.1.8",
66
+ "eslint-plugin-prettier": "5.5.4",
67
+ "husky": "8.0.3",
68
+ "prettier": "3.6.2",
69
+ "tsup": "8.5.1",
70
+ "tsx": "4.20.6",
71
+ "typescript": "5.9.3",
72
+ "vitest": "4.0.18"
55
73
  },
56
74
  "dependencies": {
57
- "@mysten/bcs": "^1.9.2",
58
- "@mysten/deepbook-v3": "^1.0.9",
59
- "@mysten/sui": "^1.45.2",
60
- "bignumber.js": "^9.3.1",
61
- "dotenv": "^17.2.3"
75
+ "@mysten/bcs": "1.9.2",
76
+ "@mysten/deepbook-v3": "1.2.2",
77
+ "@mysten/sui": "1.45.2",
78
+ "bignumber.js": "9.3.1",
79
+ "dotenv": "17.2.3"
62
80
  },
63
81
  "lint-staged": {
64
82
  "**/*.ts": [
@@ -76,21 +94,5 @@
76
94
  "engines": {
77
95
  "node": ">=18.0.0",
78
96
  "pnpm": ">=9.0.0"
79
- },
80
- "scripts": {
81
- "build": "pnpm run build:prod",
82
- "build:prod": "tsup --env.NODE_ENV production",
83
- "build:dev": "tsup",
84
- "build:watch": "tsc --watch",
85
- "example:toolkit": "tsx src/examples/toolkit-demo.ts",
86
- "clean": "rm -rf dist",
87
- "lint": "eslint src --ext .ts",
88
- "format:fix": "prettier --ignore-path 'dist/* docs/*' --write '**/*.{ts,json,md}'",
89
- "lint:fix": "eslint src --ext .ts --fix",
90
- "format": "prettier --write \"src/**/*.ts\"",
91
- "format:check": "prettier --check \"src/**/*.ts\"",
92
- "test": "vitest",
93
- "test:watch": "vitest --watch",
94
- "test:coverage": "vitest --coverage"
95
97
  }
96
- }
98
+ }