-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (55 loc) · 1.75 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
{
"name": "novaposhtarest",
"version": "0.1.2",
"type": "module",
"description": "Typings and functional interface for Nova Poshta (Нова Пошта) REST API",
"main": "./dist/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./Address": "./dist/models/Address.js",
"./ContactPerson": "./dist/models/ContactPerson.js",
"./Counterparty": "./dist/models/Counterparty.js",
"./InternetDocument": "./dist/models/InternetDocument.js",
"./ScanSheet": "./dist/models/ScanSheet.js",
"./TrackingDocument": "./dist/models/TrackingDocument.js",
"./Common": "./dist/models/Common.js",
"./AdditionalService": "./dist/models/AdditionalService.js",
"./compat": "./dist/compat/index.js",
"./compat/Address": "./dist/compat/models/Address.js",
"./compat/ContactPerson": "./dist/compat/models/ContactPerson.js",
"./compat/Counterparty": "./dist/compat/models/Counterparty.js",
"./compat/InternetDocument": "./compat/dist/models/InternetDocument.js",
"./compat/ScanSheet": "./dist/compat/models/ScanSheet.js",
"./compat/TrackingDocument": "./dist/compat/models/TrackingDocument.js",
"./compat/Common": "./dist/compat/models/Common.js",
"./compat/AdditionalService": "./dist/compat/models/AdditionalService.js"
},
"scripts": {
"cleanup": "node cleanup.js",
"compile": "tsc",
"compat": "node mkcompat.js",
"build": "run-s cleanup compile compat"
},
"repository": {
"type": "git",
"url": "https://github.com/maddsua/NovaPoshtaREST"
},
"keywords": [
"rest",
"typings",
"NovaPoshta",
"logistics"
],
"author": "maddsua",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/node": "^20.1.5",
"glob": "^10.2.4",
"fs-extra": "^11.1.1",
"npm-run-all": "^4.1.5"
}
}