@f-o-t/brasil-api 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/package.json +33 -61
  2. package/dist/index.d.ts +0 -1442
  3. package/dist/index.js +0 -523
package/package.json CHANGED
@@ -1,63 +1,35 @@
1
1
  {
2
- "name": "@f-o-t/brasil-api",
3
- "version": "0.1.0",
4
- "description": "Type-safe Brasil API wrapper with Zod validation",
5
- "type": "module",
6
- "license": "MIT",
7
- "homepage": "https://github.com/F-O-T/montte-nx/blob/master/libraries/brasil-api",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/F-O-T/montte-nx.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/F-O-T/montte-nx/issues"
14
- },
15
- "private": false,
16
- "publishConfig": {
17
- "access": "public"
18
- },
19
- "module": "./dist/index.js",
20
- "types": "./dist/index.d.ts",
21
- "exports": {
22
- ".": {
23
- "bun": "./src/index.ts",
24
- "import": {
25
- "default": "./dist/index.js",
26
- "types": "./dist/index.d.ts"
27
- },
28
- "types": "./src/index.ts"
29
- },
30
- "./package.json": "./package.json"
31
- },
32
- "files": [
33
- "dist"
34
- ],
35
- "scripts": {
36
- "build": "bunup",
37
- "dev": "bunup --watch",
38
- "test": "bun test",
39
- "test:watch": "bun test --watch",
40
- "test:coverage": "bun test --coverage",
41
- "typecheck": "tsc",
42
- "check": "biome check --write .",
43
- "release": "bumpp --commit --push --tag"
44
- },
45
- "dependencies": {
46
- "zod": "^3.23.8"
47
- },
48
- "devDependencies": {
49
- "@biomejs/biome": "2.3.10",
50
- "@types/bun": "1.3.5",
51
- "bumpp": "10.3.2",
52
- "bunup": "0.16.11",
53
- "typescript": "5.9.3"
54
- },
55
- "peerDependencies": {
56
- "typescript": ">=4.5.0"
57
- },
58
- "peerDependenciesMeta": {
59
- "typescript": {
60
- "optional": true
61
- }
62
- }
2
+ "name": "@f-o-t/brasil-api",
3
+ "version": "0.1.1",
4
+ "type": "module",
5
+ "files": [
6
+ "dist"
7
+ ],
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "build": "bun x --bun fot build",
18
+ "test": "bun x --bun fot test",
19
+ "lint": "bun x --bun fot lint",
20
+ "format": "bun x --bun fot format",
21
+ "typecheck": "bun x --bun fot typecheck"
22
+ },
23
+ "dependencies": {
24
+ "zod": "^4.3.6"
25
+ },
26
+ "devDependencies": {
27
+ "@f-o-t/cli": "^1.0.0",
28
+ "@f-o-t/config": "^1.0.0"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/F-O-T/libraries.git",
33
+ "directory": "libraries/brasil-api"
34
+ }
63
35
  }