mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:31:54 +00:00
Bazel's rules_js rely on the pnpm package manager. To simplify the integration, we're migrating to pnpm from our current package manager — yarn. Another reason to migrate is that pnpm is cool and fast. 😉
20 lines
450 B
JSON
20 lines
450 B
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/codeintellify",
|
|
"version": "0.0.1",
|
|
"description": "Sourcegraph Codeintellify",
|
|
"main": "./src/index.ts",
|
|
"sideEffects": false,
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"lint:js": "eslint --cache 'src/**/*.[jt]s?(x)'",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/extension-api-types": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@sourcegraph/common": "workspace:*"
|
|
}
|
|
}
|