mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 12:51:55 +00:00
* Add cody-shared package * Add cody-ui package * Adjust web package and install new deps * Minor fixes in build bazel * Configure * Run prettier * Run prettier * Fix linters * Fix eslint problems * Update tsconfig refs * Remove unused code * Update packages build files * Update packages build files * Update packages build files 2 * Remove wildcard from cody-ui * Attempt to fix bazel file for cody-ui * Run prettier * fix cody bazel file * Update tsconfig refs * Remove unused/unsupported recipes from cody-shared
21 lines
495 B
JSON
21 lines
495 B
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/cody-ui",
|
|
"version": "0.0.7",
|
|
"description": "Cody UI shared library",
|
|
"license": "Apache-2.0",
|
|
"main": "src/index.ts",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"@mdi/js": "^7.2.96",
|
|
"classnames": "^2.3.2",
|
|
"@sourcegraph/cody-shared": "workspace:*"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build && cp -R src/* dist/",
|
|
"lint": "pnpm run lint:js",
|
|
"lint:js": "eslint --cache '**/*.[tj]s?(x)'",
|
|
"test": "vitest"
|
|
}
|
|
}
|