@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.
- package/package.json +33 -61
- package/dist/index.d.ts +0 -1442
- package/dist/index.js +0 -523
package/package.json
CHANGED
|
@@ -1,63 +1,35 @@
|
|
|
1
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
|
-
"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
|
}
|