Skip to content
Merged
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
19 changes: 18 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ validation, and automatic formatting directly into your editor.

***

**[Install from the Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=sourcemeta.sourcemeta-studio)**
**[Install in Visual Studio Code](vscode:extension/sourcemeta.sourcemeta-studio)**

***

Expand All @@ -25,6 +25,23 @@ After installing the Sourcemeta Studio extension, issues are not displayed autom
> Data Products with JSON
> Schema](https://www.oreilly.com/library/view/unifying-business-data/9781098144999/).

Publisher & Verification Status
-------------------------------

Sourcemeta Studio is published and maintained by the **official Sourcemeta
organization**, the team behind open-source JSON Schema tooling used in
production by developers and companies worldwide.

At the time of writing, the Visual Studio Code Marketplace **Verified Publisher**
badge has not yet been applied to this extension. Publisher verification is a
Microsoft-managed, administrative process that is independent of an
extension’s code quality, security posture, or maintenance status, and can take
time even for established open-source organizations.

This extension is actively maintained by the Sourcemeta team, and all releases
are built from the same public repositories that power Sourcemeta’s other
open-source projects.

Features
--------

Expand Down
12 changes: 6 additions & 6 deletions vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 31 additions & 5 deletions vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"name": "sourcemeta-studio",
"displayName": "Sourcemeta Studio",
"displayName": "Sourcemeta JSON Schema Studio",
"publisher": "sourcemeta",
"description": "JSON Schema inspection, formatting, and linting tools",
"version": "0.0.8",
"description": "JSON Schema inspection, formatting, and linting tools by a member of the JSON Schema Technical Steering Committee",
"version": "1.0.0",
"icon": "logo.png",
"engines": {
"vscode": "^1.74.0"
},
"homepage": "https://www.sourcemeta.com/",
"categories": [
"Other"
"Linters",
"Formatters",
"Programming Languages",
"AI",
"Data Science",
"Testing",
"Visualization"
],
"repository": {
"type": "git",
Expand Down Expand Up @@ -48,6 +55,25 @@
}
}
},
"keywords": [
"json",
"json schema",
"schema",
"validation",
"validator",
"lint",
"linter",
"linting",
"formatter",
"formatting",
"openapi",
"api",
"vscode",
"data",
"schema validation",
"json lint"
],
"qna": "marketplace",
"scripts": {
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
Expand All @@ -56,7 +82,7 @@
"lint": "eslint src --ext ts"
},
"dependencies": {
"@sourcemeta/jsonschema": "^13.3.0"
"@sourcemeta/jsonschema": "^14.0.2"
},
"devDependencies": {
"@types/node": "24.x",
Expand Down