|
| 1 | +{ |
| 2 | + "name": "@sentry/deno", |
| 3 | + "version": "7.73.0", |
| 4 | + "description": "Official Sentry SDK for Deno", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/deno", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "main": "build/index.js", |
| 10 | + "module": "build/index.js", |
| 11 | + "types": "build/index.d.ts", |
| 12 | + "private": true, |
| 13 | + "dependencies": { |
| 14 | + "@sentry/core": "7.73.0", |
| 15 | + "@sentry/browser": "7.73.0", |
| 16 | + "@sentry/types": "7.73.0", |
| 17 | + "@sentry/utils": "7.73.0", |
| 18 | + "lru_map": "^0.3.3" |
| 19 | + }, |
| 20 | + "devDependencies": { |
| 21 | + "@types/node": "20.8.2", |
| 22 | + "@rollup/plugin-commonjs": "^25.0.5", |
| 23 | + "@rollup/plugin-typescript": "^11.1.5", |
| 24 | + "rollup-plugin-dts": "^6.1.0" |
| 25 | + }, |
| 26 | + "scripts": { |
| 27 | + "deno-types": "node ./scripts/download-deno-types.mjs", |
| 28 | + "build": "run-s build:transpile build:types", |
| 29 | + "build:dev": "yarn build", |
| 30 | + "build:transpile": "yarn deno-types && rollup -c rollup.config.js", |
| 31 | + "build:types": "run-s deno-types build:types:tsc build:types:bundle", |
| 32 | + "build:types:tsc": "tsc -p tsconfig.types.json", |
| 33 | + "build:types:bundle": "rollup -c rollup.types.config.js", |
| 34 | + "circularDepCheck": "madge --circular src/index.ts", |
| 35 | + "clean": "rimraf build coverage", |
| 36 | + "prefix": "yarn deno-types", |
| 37 | + "fix": "run-s fix:eslint fix:prettier", |
| 38 | + "fix:eslint": "eslint . --format stylish --fix", |
| 39 | + "fix:prettier": "prettier --write \"{src,test,scripts}/**/**.ts\"", |
| 40 | + "prelint": "yarn deno-types", |
| 41 | + "lint": "run-s lint:prettier lint:eslint", |
| 42 | + "lint:eslint": "eslint . --format stylish", |
| 43 | + "lint:prettier": "prettier --check \"{src,test,scripts}/**/**.ts\"", |
| 44 | + "install:deno": "node ./scripts/install-deno.mjs", |
| 45 | + "test": "run-s deno-types install:deno test:types test:unit", |
| 46 | + "test:types": "deno check ./build/index.js", |
| 47 | + "test:unit": "deno test --allow-read --allow-run", |
| 48 | + "test:unit:update": "deno test --allow-read --allow-write --allow-run -- --update" |
| 49 | + }, |
| 50 | + "volta": { |
| 51 | + "extends": "../../package.json" |
| 52 | + }, |
| 53 | + "sideEffects": false, |
| 54 | + "madge": { |
| 55 | + "detectiveOptions": { |
| 56 | + "ts": { |
| 57 | + "skipTypeImports": true |
| 58 | + } |
| 59 | + } |
| 60 | + } |
| 61 | +} |
0 commit comments