-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "@brazilian-utils/brazilian-utils",
"version": "2.0.0",
"license": "MIT",
"description": "Brazilian Utils is a library focused on solving problems that we face daily in the development of applications for the Brazilian business.",
"repository": "https://github.com/brazilian-utils/brazilian-utils",
"sideEffects": false,
"type": "module",
"main": "./dist/brazilian-utils.umd.cjs",
"files": [
"./dist"
],
"module": "./dist/brazilian-utils.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/brazilian-utils.js",
"require": "./dist/brazilian-utils.umd.cjs"
}
},
"scripts": {
"test": "vitest",
"test:edge-browser": "vitest --browser=edge",
"test:chrome-browser": "vitest --browser=chrome",
"test:safari-browser": "vitest --browser=safari --browser.headless=false",
"test:firefox-browser": "vitest --browser=firefox",
"check": "biome check --write .",
"prebuild": "bun ./scripts/prebuild.ts",
"build": "vite build",
"build:cities": "bun ./scripts/cities.ts",
"build:states": "bun ./scripts/states.ts",
"prepublishOnly": "bun run build",
"ci": "biome ci",
"release": "release-it"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "^1.3.6",
"@vitest/browser-webdriverio": "4.0.17",
"release-it": "^19.2.4",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "4.0.17",
"webdriverio": "^9.23.2"
}
}