iptuapi 2.0.2 → 2.1.0

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 CHANGED
@@ -1,61 +1,63 @@
1
1
  {
2
2
  "name": "iptuapi",
3
- "version": "2.0.2",
4
- "description": "SDK oficial para a IPTU API - Dados de IPTU de São Paulo, Belo Horizonte e Recife",
3
+ "version": "2.1.0",
4
+ "description": "SDK oficial para a IPTU API - Dados de IPTU e ITBI de Sao Paulo, Belo Horizonte e Recife",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/index.d.ts",
10
+ "require": "./dist/index.js",
11
11
  "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
12
+ "types": "./dist/index.d.ts"
13
13
  }
14
14
  },
15
15
  "files": [
16
- "dist"
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
17
19
  ],
18
20
  "scripts": {
19
- "build": "tsup src/index.ts --format cjs,esm --dts",
21
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
20
22
  "test": "vitest run",
21
23
  "test:watch": "vitest",
22
24
  "test:coverage": "vitest run --coverage",
25
+ "lint": "eslint src --ext .ts",
23
26
  "typecheck": "tsc --noEmit",
24
- "lint": "eslint src tests",
25
27
  "prepublishOnly": "npm run build"
26
28
  },
27
29
  "keywords": [
28
30
  "iptu",
31
+ "itbi",
29
32
  "api",
30
- "são paulo",
31
- "belo horizonte",
32
- "recife",
33
- "imóveis",
34
- "dados",
35
- "real estate",
36
- "property",
37
- "typescript",
38
- "sdk"
33
+ "imoveis",
34
+ "real-estate",
35
+ "brazil",
36
+ "sao-paulo",
37
+ "belo-horizonte",
38
+ "recife"
39
39
  ],
40
- "author": "IPTU API <contato@iptuapi.com.br>",
41
- "license": "MIT",
40
+ "author": "IPTU API <suporte@iptuapi.com.br>",
41
+ "license": "SEE LICENSE IN LICENSE",
42
42
  "repository": {
43
43
  "type": "git",
44
- "url": "https://github.com/iptuapi/iptuapi-js"
44
+ "url": "git+https://github.com/raphaeltorquat0/iptuapi-js.git"
45
45
  },
46
- "homepage": "https://iptuapi.com.br",
47
46
  "bugs": {
48
- "url": "https://github.com/iptuapi/iptuapi-js/issues"
47
+ "url": "https://github.com/raphaeltorquat0/iptuapi-js/issues"
48
+ },
49
+ "homepage": "https://iptuapi.com.br",
50
+ "engines": {
51
+ "node": ">=18.0.0"
49
52
  },
50
53
  "devDependencies": {
51
54
  "@types/node": "^20.10.0",
52
- "@vitest/coverage-v8": "^1.0.0",
53
- "msw": "^2.0.0",
55
+ "eslint": "^8.55.0",
56
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
57
+ "@typescript-eslint/parser": "^6.13.0",
54
58
  "tsup": "^8.0.0",
55
59
  "typescript": "^5.3.0",
56
- "vitest": "^1.0.0"
57
- },
58
- "engines": {
59
- "node": ">=18"
60
+ "vitest": "^1.0.0",
61
+ "@vitest/coverage-v8": "^1.0.0"
60
62
  }
61
63
  }