sourcegraph/client/extension-api-types/package.json
Valery Bugakov ce38bbc724
web: fix pnpm-lock issue (#47478)
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).
2023-02-09 22:04:31 -08:00

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": "*"
}
}