-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.26 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": "bir1",
"version": "4.0.0",
"description": "GUS REGON api client",
"keywords": [
"companies",
"regon",
"nip",
"gus"
],
"repository": "pawel-id/bir1",
"license": "MIT",
"author": "Paweł Idczak <[email protected]>",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./normalize": {
"types": "./dist/normalize.d.ts",
"default": "./dist/normalize.js"
}
},
"files": [
"dist"
],
"scripts": {
"docs": "rimraf docs && typedoc",
"build": "rimraf dist && tsc",
"dev": "tsc -w",
"test": "tap",
"pretty": "prettier --write src"
},
"dependencies": {
"entities": "^6.0.0",
"fast-xml-parser": "^4.5.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/xml2js": "^0.4.14",
"bir1-legacy": "npm:bir1@^2",
"dotenv": "^16.3.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tap": "^21.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.3.3",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
}
}