-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
{
"name": "correios-api-client",
"version": "0.1.4",
"description": "A lightweight client for interfacing with the Correios API. Facilitates seamless integration of Brazil's postal services into JavaScript applications, including features for tracking, delivery estimates, pricing, and address lookup (CEP).",
"keywords": [
"correios",
"api",
"cep",
"rastreamento",
"preço",
"prazo",
"calulo preço",
"calculo"
],
"homepage": "https://github.com/cordeiro-rubens/correios-api-client#readme",
"bugs": {
"url": "https://github.com/cordeiro-rubens/correios-api-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cordeiro-rubens/correios-api-client.git"
},
"license": "MIT",
"author": "Rubens Cordeiro",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/index.d.ts",
"dist/index.mjs",
"dist/index.umd.js"
],
"scripts": {
"build:lib": "cross-env LIB_NAME=lib vite build",
"build:example": "cross-env LIB_NAME=example vite build",
"build": "npm run build:lib && npm run build:example",
"build-dts": "npm run build && dts-bundle-generator ./src/index.ts -o ./dist/index.d.ts",
"publish": "npm run build-dts && npm publish",
"test": "vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.50.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.5"
}
}