mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
* Move telemetry service to the shared package * Migrate web to the shared based telemetry * Add svelte telemetry events * Run svelte format * Format:changed * Format:changed and fix custom log view event handler * Rebased onto main
34 lines
1.3 KiB
JSON
34 lines
1.3 KiB
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/shared",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"storybook": "STORIES_GLOB='client/shared/src/**/*.story.tsx' pnpm --filter @sourcegraph/storybook run start",
|
|
"lint:js": "eslint --cache '**/*.[jt]s?(x)'",
|
|
"lint:css": "stylelint 'src/**/*.scss' --quiet",
|
|
"test": "vitest",
|
|
"build-ts": "tsc --build tsconfig.json --emitDeclarationOnly",
|
|
"generate": "concurrently -r npm:generate:*",
|
|
"generate:graphql-operations": "ts-node -T dev/generateGraphQlOperations.ts",
|
|
"generate:schema": "ts-node -T dev/generateSchema.ts json-schema-draft-07 settings site batch_spec opencodegraph",
|
|
"generate:css-modules-types": "ts-node -T dev/generateCssModulesTypes.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/build-config": "workspace:*",
|
|
"@sourcegraph/extension-api-types": "workspace:*",
|
|
"@sourcegraph/testing": "workspace:*",
|
|
"sourcegraph": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@sourcegraph/client-api": "workspace:*",
|
|
"@sourcegraph/codeintellify": "workspace:*",
|
|
"@sourcegraph/common": "workspace:*",
|
|
"@sourcegraph/http-client": "workspace:*",
|
|
"@sourcegraph/telemetry": "^0.11.0",
|
|
"@sourcegraph/template-parser": "workspace:*",
|
|
"@sourcegraph/wildcard": "workspace:*"
|
|
},
|
|
"sideEffects": true
|
|
}
|