Skip to content

Commit

Permalink
updates vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
bearpong committed Jan 23, 2025
1 parent 49b8e70 commit ee4045d
Showing 1 changed file with 58 additions and 60 deletions.
118 changes: 58 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,61 @@
{
"name": "@berachain-foundation/berancer-sdk",
"description": "SDK for interacting with the Balancer protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/balancer/b-sdk"
},
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsup",
"format": "biome format --write .",
"lint": "dpdm -T ./src && biome check .",
"test": "vitest dev",
"test:ci": "vitest run",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"example": "npx tsx ./examples/lib/executeExample.ts"
},
"dependencies": {
"decimal.js-light": "^2.5.1",
"lodash.clonedeep": "^4.5.0",
"viem": "^2.21.55"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@changesets/cli": "^2.27.1",
"@types/async-retry": "^1.4.8",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^18.19.7",
"@viem/anvil": "^0.0.6",
"dotenv": "^16.3.1",
"dpdm": "^3.14.0",
"pino-pretty": "^10.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.7.2",
"vite": "^5.2.10",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
"name": "@berachain-foundation/berancer-sdk",
"description": "SDK for interacting with the Balancer protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/balancer/b-sdk"
},
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": ["dist/"],
"scripts": {
"build": "tsup",
"format": "biome format --write .",
"lint": "dpdm -T ./src && biome check .",
"test": "vitest dev",
"test:ci": "vitest run",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"example": "npx tsx ./examples/lib/executeExample.ts"
},
"dependencies": {
"decimal.js-light": "^2.5.1",
"lodash.clonedeep": "^4.5.0",
"viem": "^2.21.55"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@changesets/cli": "^2.27.1",
"@types/async-retry": "^1.4.8",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^18.19.7",
"@viem/anvil": "^0.0.6",
"dotenv": "^16.3.1",
"dpdm": "^3.14.0",
"pino-pretty": "^10.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.7.2",
"vite": "^5.2.10",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "3.0.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.x"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.x"
}
}

0 comments on commit ee4045d

Please sign in to comment.