-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@box4dev/validador-br",
"version": "1.0.1",
"description": "Biblioteca completa e moderna para validação de documentos e dados brasileiros.",
"author": "Box4Dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/box4dev/validador-br.git"
},
"bugs": {
"url": "https://github.com/box4dev/validador-br/issues"
},
"homepage": "https://github.com/box4dev/validador-br#readme",
"keywords": [
"validador",
"validator",
"validação",
"validation",
"cpf",
"cnpj",
"cnpj-alfanumerico",
"cnh",
"cns",
"pis",
"pasep",
"titulo-eleitor",
"certidao",
"inscricao-estadual",
"cartao-credito",
"brasil",
"brazil",
"br",
"isValid",
"validate",
"typescript"
],
"sideEffects": false,
"type": "module",
"main": "./dist/validador-br.cjs",
"module": "./dist/validador-br.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/validador-br.js",
"require": "./dist/validador-br.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.6.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepublishOnly": "pnpm run build && pnpm run test",
"build": "tsup",
"typecheck": "tsc --noEmit",
"biome:format": "biome format --write",
"biome:lint": "biome lint --write",
"biome:check": "biome check --write",
"biome:ci": "biome ci",
"test": "node --import tsx --test --experimental-test-coverage src/**/*.test.ts",
"test:watch": "node --import tsx --test --watch src/**/*.test.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"@types/node": "^22.13.1"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.1.1",
"onFail": "download"
}
}
}