npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

precifica-obra-core

v0.1.0

Published

Framework-independent TypeScript toolkit for normalizing SINAPI data and calculating reproducible civil-construction budgets.

Readme

Precifica Obra Core

Biblioteca TypeScript independente de framework para ler planilhas SINAPI fornecidas pelo usuário e produzir cálculos reproduzíveis de custos de obras civis. O projeto extrai o núcleo de domínio de uma aplicação de orçamentação utilizada internamente.

Este projeto é independente e não possui vínculo ou endosso da CAIXA, do IBGE ou do Governo Federal. Nenhuma base SINAPI é redistribuída. O usuário deve obter os arquivos na fonte oficial e validar os resultados antes do uso profissional.

Read in English

Objetivo

  • Normalizar linhas de CSV/XLSX sem banco de dados ou framework web.
  • Ler cabeçalhos e linhas para interfaces de pré-visualização com readSinapiFile.
  • Manter separados os preços desonerado e não desonerado.
  • Calcular materiais, mão de obra com encargos, equipamentos e composições.
  • Calcular orçamento e BDI composto com aritmética decimal determinística.
  • Informar erros por linha sem aceitar silenciosamente dados inválidos.

Instalação

npm install precifica-obra-core

Requer Node.js 20 ou superior.

Exemplo

import { calculateComposition, parseSinapiWorkbook } from 'precifica-obra-core'

const result = await parseSinapiWorkbook(fileBytes, {
  state: 'MG',
  referenceMonth: '2026-03',
  category: 'SINAPI_INSUMOS',
})

const composition = calculateComposition({
  code: 'EXEMPLO-1',
  description: 'Composição demonstrativa',
  unit: 'M2',
  items: [
    {
      code: 'MAT-1',
      description: 'Material',
      unit: 'KG',
      category: 'MATERIAL',
      coefficient: '2.5',
      unitPrice: '4.1234',
    },
  ],
})

console.log(result.diagnostics)
console.log(composition.directCost)

As saídas monetárias públicas usam strings com quatro casas decimais. Prefira strings também nas entradas para preservar integralmente a precisão.

Cada total de linha de uma composição é calculado com a precisão integral das entradas e arredondado uma única vez para quatro casas. Os totais por categoria e o custo direto somam esses mesmos valores de linha já arredondados, de modo que os valores exibidos sempre fecham entre si. Categorias e estratégias de duplicidade desconhecidas em tempo de execução são rejeitadas com ValidationError.

Fórmula de BDI

O cálculo usa:

((1 + AC + S + G + R) × (1 + DF) × (1 + L) / (1 - I)) - 1

Os percentuais são informados como valores percentuais, por exemplo 5 para 5%.

Desenvolvimento

npm ci
npm run validate

Consulte CONTRIBUTING.md, docs/API.md e docs/VALIDATION.md.

Licença

MIT © 2026 Jonathan Carlos Nunes do Nascimento.