-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.08 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.08 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
{
"name": "@brazilian-utils/brazilian-utils",
"version": "2.3.0",
"description": "Brazilian Utils is a library focused on solving problems that we face daily in the development of applications for the Brazilian business.",
"license": "MIT",
"repository": "https://github.com/brazilian-utils/javascript",
"files": [
"./dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/brazilian-utils.umd.cjs",
"module": "./dist/brazilian-utils.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/brazilian-utils.js",
"require": "./dist/brazilian-utils.umd.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vp test",
"test:coverage": "vp test run --coverage",
"test:bun": "bun test src",
"test:deno": "deno test --unstable-sloppy-imports --allow-net --allow-env src",
"test:live": "RUN_LIVE_CEP_TESTS=1 vp test src/get-address-info-by-cep/get-address-info-by-cep.test.ts",
"test:edge-browser": "vp test --browser=edge",
"test:chrome-browser": "vp test --browser=chrome",
"test:safari-browser": "vp test --browser=safari --browser.headless=false",
"test:firefox-browser": "vp test --browser=firefox",
"format": "vp fmt --write .",
"format:check": "vp fmt --check .",
"lint": "vp lint .",
"lint:fix": "vp lint --fix .",
"check": "vp check",
"check:fix": "vp check --fix",
"prebuild": "node ./scripts/prebuild.ts",
"build": "vp build",
"build:cities": "node ./scripts/cities.ts",
"build:states": "node ./scripts/states.ts",
"prepublishOnly": "vp run build",
"ci": "vp check",
"release": "release-it"
},
"devDependencies": {
"@vitest/coverage-v8": "4.1.4",
"release-it": "20.0.0",
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.16",
"vite-plugin-dts": "4.5.4",
"vite-plus": "0.1.18",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.16",
"webdriverio": "9.27.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.16",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.16"
}
}
}