-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add readme file with examples
- Loading branch information
1 parent
aa927aa
commit 540604f
Showing
4 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "islam.js", | ||
"version": "1.0.0", | ||
"description": "This is the initial commit.", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "eslint", | ||
"lint:fix": "eslint --fix", | ||
"start": "npx ts-node src/test.ts", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/dev-ahmadbilal/islam.js.git" | ||
}, | ||
"keywords": [ | ||
"islam.js", | ||
"islam", | ||
"quran", | ||
"hadith", | ||
"prayer", | ||
"azkar" | ||
], | ||
"author": "Ahmad Bilal", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/dev-ahmadbilal/islam.js/issues" | ||
}, | ||
"homepage": "https://github.com/dev-ahmadbilal/islam.js#readme", | ||
"devDependencies": { | ||
"@eslint/js": "^9.9.1", | ||
"@types/node": "^22.5.0", | ||
"eslint": "^9.9.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"globals": "^15.9.0", | ||
"prettier": "3.3.3", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.5.4", | ||
"typescript-eslint": "^8.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export enum DialectEnum { | ||
Hafs = 'hafs', | ||
Watsh = 'warsh', | ||
Warsh = 'warsh', | ||
} |