-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
60 lines (60 loc) · 2.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@grafana/faro-core",
"version": "1.12.2",
"description": "Core package of Faro.",
"keywords": [
"observability",
"apm",
"rum",
"logs",
"traces",
"metrics"
],
"license": "Apache-2.0",
"author": "Grafana Labs",
"homepage": "https://github.com/grafana/faro-web-sdk",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/grafana/faro-web-sdk.git",
"directory": "packages/core"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
".browserslistrc",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "yarn watch",
"build": "run-s build:*",
"build:version": "node bin/genVersion.js",
"build:compile": "run-p build:compile:*",
"build:compile:cjs": "tsc --build tsconfig.cjs.json",
"build:compile:esm": "tsc --build tsconfig.esm.json",
"build:compile:bundle": "run-s build:compile:bundle:*",
"build:compile:bundle:create": "rollup -c ./rollup.config.js",
"build:compile:bundle:remove-extras": "rimraf dist/bundle/dist",
"watch": "run-s build:version watch:compile",
"watch:compile": "yarn build:compile:cjs -w",
"clean": "rimraf dist/ yarn-error.log",
"quality": "run-s quality:*",
"quality:test": "jest",
"quality:format": "prettier --cache --cache-location=../../.cache/prettier/core --ignore-path ../../.prettierignore -w \"./**/*.{js,jsx,ts,tsx,css,scss,md,yaml,yml,json}\"",
"quality:lint": "run-s quality:lint:*",
"quality:lint:eslint": "eslint --cache --cache-location ../../.cache/eslint/core --ignore-path ../../.eslintignore \"./**/*.{js,jsx,ts,tsx}\"",
"quality:lint:prettier": "prettier --cache --cache-location=../../.cache/prettier/core --ignore-path ../../.prettierignore -c \"./**/*.{js,jsx,ts,tsx,css,scss,md,yaml,yml,json}\"",
"quality:lint:md": "markdownlint README.md",
"quality:circular-deps": "madge --circular ."
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/otlp-transformer": "^0.53.0"
},
"publishConfig": {
"access": "public"
}
}