-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.85 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "routexpress-bd",
"version": "0.0.2",
"description": "A TypeScript/JavaScript library for integrating Steadfast Pathao REDX delivery services",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./controllers/steadfast/index": {
"import": "./dist/controllers/steadfast/index.js",
"require": "./dist/controllers/steadfast/index.js"
},
"./controllers/pathao/index": {
"import": "./dist/controllers/pathao/index.js",
"require": "./dist/controllers/pathao/index.js"
},
"./controllers/redx/index": {
"import": "./dist/controllers/redx/index.js",
"require": "./dist/controllers/redx/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "node --loader ts-node/esm test/main.ts",
"start": "ts-node test/main.ts"
},
"keywords": [
"delivery",
"steadfast",
"pathao",
"redx",
"delivery-service",
"delivery-api",
"delivery-management",
"logistics-api",
"logistics-management",
"logistics",
"bangladesh"
],
"author": "Dip",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bytebrain3/RouteXpress.git"
},
"packageManager": "pnpm@10.7.1",
"devDependencies": {
"@types/node": "^22.15.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"compilerOptions": {
"outDir": "dist",
"declaration": true,
"declarationDir": "dist",
"module": "commonjs",
"target": "es2019",
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
]
}