UNPKG

1.52 kBJSONView Raw
1{
2 "name": "@sentry/types",
3 "version": "6.12.0",
4 "description": "Types for all Sentry JavaScript SDKs",
5 "repository": "git://github.com/getsentry/sentry-javascript.git",
6 "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/types",
7 "author": "Sentry",
8 "license": "BSD-3-Clause",
9 "engines": {
10 "node": ">=6"
11 },
12 "main": "dist/index.js",
13 "module": "esm/index.js",
14 "types": "dist/index.d.ts",
15 "publishConfig": {
16 "access": "public"
17 },
18 "devDependencies": {
19 "@sentry-internal/eslint-config-sdk": "6.12.0",
20 "npm-run-all": "^4.1.2",
21 "prettier": "1.19.0",
22 "typescript": "3.7.5"
23 },
24 "scripts": {
25 "build": "run-p build:es5 build:esm",
26 "build:es5": "tsc -p tsconfig.build.json",
27 "build:esm": "tsc -p tsconfig.esm.json",
28 "build:watch": "run-p build:watch:es5 build:watch:esm",
29 "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
30 "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
31 "link:yarn": "yarn link",
32 "lint": "run-s lint:prettier lint:eslint",
33 "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
34 "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
35 "fix": "run-s fix:eslint fix:prettier",
36 "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
37 "fix:eslint": "eslint . --format stylish --fix",
38 "pack": "npm pack"
39 },
40 "volta": {
41 "extends": "../../package.json"
42 },
43 "sideEffects": false
44}