-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "busca-processos-judiciais",
"version": "1.0.3",
"description": "Biblioteca que utiliza a API Pública do CNJ para abstrair a busca de dados de processos judiciais de todas as justiças do país.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsup index.ts --format cjs,esm --dts && npx fix-tsup-cjs",
"lint": "tsc",
"test": "jest",
"build-docs": "typedoc --plugin typedoc-plugin-rename-defaults index.ts"
},
"author": "João Textor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joaotextor/busca-processos-judiciais"
},
"keywords": [
"processos judiciais",
"public api",
"cnj"
],
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typedoc": "^0.25.2",
"typedoc-plugin-rename-defaults": "^0.6.7",
"typescript": "^5.2.2"
}
}