sourcegraph/client/shared/package.json
Vova Kulikov c2afde8b43
Svelte: Add basic telemetry to svelte implementation (#62190)
* 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
2024-04-26 12:56:33 +02:00

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
}