-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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
{
"name": "giaohangnhanh",
"version": "0.0.5",
"description": "An open-source nodejs library to support shipping managements with giaohangnhanh (ghn.vn)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib"],
"scripts": {
"prepare": "npm run build",
"build": "rimraf ./lib && tsc",
"lint": "npx @biomejs/biome lint .",
"lint:fix": "npx @biomejs/biome lint . --write",
"format": "npx @biomejs/biome format .",
"format:fix": "npx @biomejs/biome format --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/lehuygiang28/giaohangnhanh.git"
},
"keywords": ["ghn", "ghn.vn", "giaohangnhanh", "giao-hang-nhanh"],
"author": "lehuygiang28 <lehuygiang28@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lehuygiang28/giaohangnhanh/issues"
},
"homepage": "https://github.com/lehuygiang28/giaohangnhanh#readme",
"typesVersions": {
"*": {
"/": ["lib/index.d.js"],
"index": ["lib/index.d.js"],
"types": ["lib/types/index.d.js"],
"address": ["lib/address/index.d.js"],
"calculate-fee": ["lib/calculate-fee/index.d.js"],
"order": ["lib/order/index.d.js"]
}
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.11.24",
"rimraf": "^5.0.5",
"tsc": "^2.0.4",
"typescript": "^5.4.5"
}
}