sourcegraph/client/codeintellify/package.json
Valery Bugakov 304acdb5da
web: migrate from yarn to pnpm (#46143)
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. 😉
2023-01-11 19:50:09 -08:00

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