Skip to content

Commit

Permalink
Add nepali-date-converter extension
Browse files Browse the repository at this point in the history
- mod: change icon
- add: first commit
  • Loading branch information
Beedhan committed Oct 11, 2024
1 parent f8fea15 commit 70c3936
Show file tree
Hide file tree
Showing 10 changed files with 1,511 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/nepali-date-converter/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
13 changes: 13 additions & 0 deletions extensions/nepali-date-converter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/nepali-date-converter/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/nepali-date-converter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Nepali Date Converter Changelog

## [Initial Version] - {PR_MERGE_DATE}
5 changes: 5 additions & 0 deletions extensions/nepali-date-converter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Nepali Date Converter

It converts current, provided date to Nepali date

Special Thanks to [nepali-date-converter](https://github.com/nepali-js/nepali-date-converter)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions extensions/nepali-date-converter/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "nepali-date-converter",
"title": "Nepali Date Converter",
"description": "It converts current, provided date to Nepali date",
"icon": "extension_icon.png",
"author": "beedhan",
"categories": [
"Other"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Convert to BS",
"description": "Converts today's date to BS",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.84.2",
"@raycast/utils": "^1.17.0",
"nepali-date-converter": "^3.3.2"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"scripts": {
"build": "ray build",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1",
"publish": "npx @raycast/api@latest publish"
}
}
Loading

0 comments on commit 70c3936

Please sign in to comment.