@anpdgovbr/shared-types
Version:
Biblioteca central de tipos TypeScript compartilhados para os projetos da ANPD (BETA)
92 lines • 2.43 kB
JSON
{
"name": "@anpdgovbr/shared-types",
"version": "0.3.1-beta.1",
"description": "Biblioteca central de tipos TypeScript compartilhados para os projetos da ANPD (BETA)",
"keywords": [
"typescript",
"types",
"dto",
"anpd",
"shared",
"interfaces",
"beta"
],
"homepage": "https://github.com/anpdgovbr/shared-types#readme",
"bugs": {
"url": "https://github.com/anpdgovbr/shared-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anpdgovbr/shared-types.git"
},
"author": {
"name": "Luciano Édipo Pereira da Silva",
"email": "luciano.psilva@anpd.gov.br",
"url": "https://github.com/lucianoedipo"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"scripts": {
"test": "jest --passWithNoTests",
"test:ci": "jest --passWithNoTests --runInBand",
"test:watch": "jest --watch",
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"watch": "tsc -w -p tsconfig.cjs.json",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"docs": "typedoc",
"docs:serve": "typedoc --serve"
}
}