-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- mod: change icon - add: first commit
- Loading branch information
Showing
10 changed files
with
1,511 additions
and
0 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,4 @@ | ||
{ | ||
"root": true, | ||
"extends": ["@raycast"] | ||
} |
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,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 |
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,4 @@ | ||
{ | ||
"printWidth": 120, | ||
"singleQuote": false | ||
} |
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,3 @@ | ||
# Nepali Date Converter Changelog | ||
|
||
## [Initial Version] - {PR_MERGE_DATE} |
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,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.
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,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" | ||
} | ||
} |
Oops, something went wrong.