-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.17 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
59
60
{
"name": "al-quran-sdk",
"version": "1.0.5",
"description": "An API wrapper for Quran on top of quran.com",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typeRoots": [
"./node_modules/@types",
"./types"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "ts-node src/index.ts"
},
"keywords": [
"al-quran",
"api",
"quran",
"quran.com",
"al-quran-api",
"verse",
"ayah",
"juz",
"quran-js"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"author": {
"name": "Pranta Das",
"email": "[email protected]",
"url": "https://github.com/Prantadas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrantaDas/al-quran-sdk.git"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"dependencies": {
"agentkeepalive": "^4.5.0",
"axios": "^1.7.2"
}
}