Stacks Transaction

TypeError: Cannot convert a BigInt value to a number
Module…/node_modules/@stacks/connect/node_modules/@stacks/transactions/dist/esm/clarity/types/intCV.js

src/clarity/types/intCV.ts:4

Please help me to solve this error
Thanks

Encounterred same error, solved by handly parse the raw response(not use cvToValue) and use BigInt:
let big100000000000000 = BigInt(‘100000000000000’)
let b = BigInt(your_var_route.value.toString(10))
let result = Number(b / big100000000000000) / 1000000

its package error
npm i @stacks/transactions
I am using this package
Tell me about the right package if you know
Thanks