grammarly-languageclient
Advanced tools
Comparing version 0.0.4-next-1681778644.0 to 0.0.4-next-1698962476.0
@@ -12,3 +12,3 @@ import { BaseLanguageClient, MessageTransports } from 'vscode-languageclient'; | ||
* | ||
* @alpha | ||
* @public | ||
*/ | ||
@@ -20,5 +20,12 @@ declare type Opaque<T, K> = T & { | ||
/** | ||
* Status of | ||
* | ||
* @public | ||
*/ | ||
declare type SessionStatus = "connecting" | "checking" | "idle" | "error"; | ||
/** | ||
* A unique identifier for a suggestion. | ||
* | ||
* @alpha | ||
* @public | ||
*/ | ||
@@ -30,11 +37,5 @@ declare type SuggestionId$1 = Opaque<string, "SuggestionId">; | ||
* | ||
* @alpha | ||
* @public | ||
*/ | ||
declare type SuggestionId = SuggestionId$1; | ||
/** | ||
* Status of | ||
* | ||
* @alpha | ||
*/ | ||
declare type SessionStatus = "connecting" | "checking" | "idle" | "error"; | ||
@@ -41,0 +42,0 @@ interface Protocol { |
140
package.json
{ | ||
"name": "grammarly-languageclient", | ||
"version": "0.0.4-next-1681778644.0", | ||
"description": "LSP client implementation for Grammarly", | ||
"author": "Rahul Kadyan <hey@znck.me>", | ||
"main": "./dist/index.node.cjs", | ||
"module": "./dist/index.node.mjs", | ||
"browser": "./dist/index.browser.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"node": { | ||
"require": "./dist/index.node.cjs", | ||
"import": "./dist/index.node.mjs", | ||
"default": "./dist/index.node.mjs" | ||
}, | ||
"default": { | ||
"import": "./dist/index.browser.mjs", | ||
"default": "./dist/index.browser.mjs" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/znck/grammarly", | ||
"directory": "packages/grammarly-languageclient" | ||
}, | ||
"buildConfig": { | ||
"useMain": false, | ||
"external": [ | ||
"vscode-languageclient/browser", | ||
"vscode-languageclient/node" | ||
], | ||
"sources": { | ||
"src/index.ts": [ | ||
{ | ||
"format": "dts", | ||
"file": "dist/index.d.ts" | ||
} | ||
], | ||
"src/index.browser.ts": [ | ||
{ | ||
"format": "esm", | ||
"file": "dist/index.browser.mjs" | ||
} | ||
], | ||
"src/index.node.ts": [ | ||
{ | ||
"format": "esm", | ||
"file": "dist/index.node.mjs" | ||
}, | ||
{ | ||
"format": "cjs", | ||
"file": "dist/index.node.cjs" | ||
} | ||
] | ||
} | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"bin" | ||
], | ||
"dependencies": { | ||
"vscode-languageclient": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@grammarly/sdk": "^1.7.4" | ||
} | ||
} | ||
"name": "grammarly-languageclient", | ||
"version": "0.0.4-next-1698962476.0", | ||
"description": "LSP client implementation for Grammarly", | ||
"author": "Rahul Kadyan <hey@znck.me>", | ||
"main": "./dist/index.node.cjs", | ||
"module": "./dist/index.node.mjs", | ||
"browser": "./dist/index.browser.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"node": { | ||
"require": "./dist/index.node.cjs", | ||
"import": "./dist/index.node.mjs", | ||
"default": "./dist/index.node.mjs" | ||
}, | ||
"default": { | ||
"import": "./dist/index.browser.mjs", | ||
"default": "./dist/index.browser.mjs" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/znck/grammarly", | ||
"directory": "packages/grammarly-languageclient" | ||
}, | ||
"buildConfig": { | ||
"useMain": false, | ||
"external": [ | ||
"vscode-languageclient/browser", | ||
"vscode-languageclient/node" | ||
], | ||
"sources": { | ||
"src/index.ts": [ | ||
{ | ||
"format": "dts", | ||
"file": "dist/index.d.ts" | ||
} | ||
], | ||
"src/index.browser.ts": [ | ||
{ | ||
"format": "esm", | ||
"file": "dist/index.browser.mjs" | ||
} | ||
], | ||
"src/index.node.ts": [ | ||
{ | ||
"format": "esm", | ||
"file": "dist/index.node.mjs" | ||
}, | ||
{ | ||
"format": "cjs", | ||
"file": "dist/index.node.cjs" | ||
} | ||
] | ||
} | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"bin" | ||
], | ||
"dependencies": { | ||
"vscode-languageclient": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@grammarly/sdk": "^2.3.17" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13866
202