mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +00:00
Fixes the issue caused by the presence of the `sourcegraph: ''` entry in the `pnpm-lock.yaml`. If we install any new dependency, the `pnpm install` command fails on CI. [Failure example](https://github.com/sourcegraph/sourcegraph/actions/runs/4121774771/jobs/7117792725).
32 lines
916 B
JSON
32 lines
916 B
JSON
{
|
|
"name": "@sourcegraph/extension-api-types",
|
|
"version": "2.1.0",
|
|
"description": "Types for working with the Sourcegraph extension API. Extensions should use the 'sourcegraph' package, not this package. This package is only for client applications that embed Sourcegraph extensions and need to communicate with them.",
|
|
"author": "Sourcegraph",
|
|
"bugs": {
|
|
"url": "https://github.com/sourcegraph/sourcegraph/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sourcegraph/sourcegraph",
|
|
"directory": "client/extension-api-types"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"main": "",
|
|
"types": "src/index.d.ts",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"lint:js": "pnpm eslint 'src/**/*.[jt]s?(x)'",
|
|
"prepublish": "pnpm eslint"
|
|
},
|
|
"devDependencies": {
|
|
"sourcegraph": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"sourcegraph": "*"
|
|
}
|
|
}
|