Skip to content

feat: add Cursor IDE compatibility #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ out
node_modules
.vscode-test/
*.vsix

# Yarn
.yarn/*
!.yarn/releases
.pnp.*
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [1.0.8] - 2020-09-12
### Updated
- Updated demo gif
- Updated demo gif

## [1.0.9] - 2023-12-21
### Added
- Added Cursor IDE compatibility
- Updated documentation to reflect Cursor support
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@

# JSON Utils

This vscode extension including some coolest features to manipulate JSON. For example: validate | beautify | uglify | escape | unescape | fix etc.
This extension for VS Code and Cursor includes some coolest features to manipulate JSON. For example: validate | beautify | uglify | escape | unescape | fix etc.

## Features

As there are tons of vscode extensions with similar features out there but I still cannot find one of them can be fulfilled all of my requirements. Therefore, I would like make a all in one solution instead of many dependency with overlapping features.
As there are tons of extensions with similar features out there but I still cannot find one of them can be fulfilled all of my requirements. Therefore, I would like make a all in one solution instead of many dependency with overlapping features.

## Installation

[Search JSON Utils via VScode extension marketplace](https://marketplace.visualstudio.com/items?itemName=teddylun.json-utils)

This extension is also compatible with Cursor IDE.

## Usage
- Validate: `cmd+ctl+v`
- Beautify: `cmd+ctl+b`
Expand All @@ -34,4 +36,3 @@ View [CHANGELOG.md](https://github.com/teddylun/json-utils/blob/master/CHANGELOG
Initial release of json utils with validate | beautify | uglify | escape | unescape | fix

-----------------------------------------------------------------------------------------------------------

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "json-utils",
"displayName": "JSON Utils",
"description": "JSON Utils",
"description": "JSON Utils for Cursor",
"publisher": "teddylun",
"version": "1.0.8",
"icon": "images/json_utils.png",
"engines": {
"vscode": "^1.48.0"
"vscode": "^1.48.0",
"cursor": "^0.1.0"
},
"categories": [
"Other",
Expand Down
Loading