-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 KB
/
package.json
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
{
"name": "zod-br-tax-id",
"version": "1.0.5",
"description": "Zod Custom Objects for Brazilian Tax Ids",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vitest --dir src",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"keywords": [
"zod",
"validation",
"cpf",
"cnpj",
"brasil",
"brazil",
"tax id",
"cpf validation",
"cnpj validation"
],
"author": "Rafael Abensur",
"license": "MIT",
"homepage": "https://github.com/abensur/zod-br-tax-id#readme",
"repository": {
"type": "git",
"url": "https://github.com/abensur/zod-br-tax-id/"
},
"bugs": {
"url": "https://github.com/abensur/zod-br-tax-id/issues"
},
"peerDependencies": {
"zod": "^3"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.24",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"zod": "^3.22.4"
}
}