This commit is contained in:
marcio 2025-11-10 16:03:15 -03:00
commit e6fa9640bc
83 changed files with 5480 additions and 969 deletions

View file

@ -1,12 +1,28 @@
{
"name": "p-comuns",
"version": "0.103.0",
"version": "0.276.0",
"description": "",
"main": "dist/index.js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"build": "rm -rf ./dist && pnpm run biome && npm --no-git-tag-version version minor && tsc",
"biome": "npx @biomejs/biome check --write ./src",
"at": "pnpm up @biomejs/biome typescript"
"biome": "pnpm exec biome check --write",
"check": "pnpm run biome && npx tsc --noEmit",
"build": "npm --no-git-tag-version version minor && pnpm run biome && tsup --config ./tsup/tsup.config.ts && pnpm run pacote",
"teste": "npx vitest run src/testes/TipagemRotas.test.ts",
"pacote": "npm pack && npm pack && mv $(npm pack --silent) pacote.tgz"
},
"author": {
"name": "AZTECA SOFTWARE LTDA",
@ -15,12 +31,23 @@
},
"license": "ISC",
"dependencies": {
"cross-fetch": "^4.1.0",
"zod": "3.24.1"
"cross-fetch": "4.1.0",
"dayjs": "^1.11.18",
"uuid": "^11.1.0",
"zod": "4.1.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.16.10",
"typescript": "^5.7.2"
"@biomejs/biome": "2.1.4",
"@types/node": "^20.19.22",
"tsup": "8.5.0",
"typescript": "~5.9.3",
"unbuild": "^3.6.1",
"vitest": "^3.2.4"
},
"peerDependencies": {
"cross-fetch": "4.1.0",
"dayjs": "^1.11.18",
"uuid": "^11.1.0",
"zod": "4.1.4"
}
}
}