This commit is contained in:
Luiz Silva 2025-10-23 18:56:42 -03:00
parent 4c2fc54be1
commit 064523b2bd
6 changed files with 64 additions and 52 deletions

View file

@ -1,41 +1,53 @@
{
"name": "p-comuns",
"version": "0.247.0",
"description": "",
"main": "./dist-back/index.js",
"module": "./dist-front/index.mjs",
"types": "./dist-front/index.d.mts",
"exports": {
".": {
"types": "./dist-front/index.d.mts",
"import": "./dist-front/index.mjs",
"require": "./dist-back/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"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",
"teste": "npx vitest run src/testes/TipagemRotas.test.ts"
},
"author": {
"name": "AZTECA SOFTWARE LTDA",
"email": "ti@e-licencie.com.br",
"url": "https://e-licencie.com.br"
},
"license": "ISC",
"dependencies": {
"cross-fetch": "4.1.0",
"dayjs": "^1.11.18",
"uuid": "^11.1.0",
"zod": "4.1.4"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/node": "^20.19.22",
"tsup": "8.5.0",
"typescript": "~5.9.3",
"vitest": "^3.2.4"
}
"name": "p-comuns",
"version": "0.248.0",
"description": "",
"type": "module",
"main": "./dist-back/index.cjs",
"module": "./dist-front/index.mjs",
"types": "./dist-front/index.d.ts",
"files": [
"dist-front",
"dist-back",
"package.json",
"README.md"
],
"exports": {
".": {
"types": "./dist-front/index.d.ts",
"node": {
"import": "./dist-back/index.mjs",
"require": "./dist-back/index.cjs"
},
"import": "./dist-front/index.mjs",
"require": "./dist-back/index.cjs",
"default": "./dist-front/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"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",
"teste": "npx vitest run src/testes/TipagemRotas.test.ts"
},
"author": {
"name": "AZTECA SOFTWARE LTDA",
"email": "ti@e-licencie.com.br",
"url": "https://e-licencie.com.br"
},
"license": "ISC",
"dependencies": {
"cross-fetch": "4.1.0",
"dayjs": "^1.11.18",
"uuid": "^11.1.0",
"zod": "4.1.4"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/node": "^20.19.22",
"tsup": "8.5.0",
"typescript": "~5.9.3",
"vitest": "^3.2.4"
}
}