|
| 1 | +{ |
| 2 | + "name": "@sentry/astro", |
| 3 | + "version": "7.73.0", |
| 4 | + "description": "Official Sentry SDK for Astro", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/astro", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "engines": { |
| 10 | + "node": ">=18.14.1" |
| 11 | + }, |
| 12 | + "main": "build/cjs/index.server.js", |
| 13 | + "module": "build/esm/index.server.js", |
| 14 | + "browser": "build/esm/index.client.js", |
| 15 | + "types": "build/types/index.types.d.ts", |
| 16 | + "publishConfig": { |
| 17 | + "access": "public" |
| 18 | + }, |
| 19 | + "peerDependencies": { |
| 20 | + "astro": "1.x" |
| 21 | + }, |
| 22 | + "devDependencies": { |
| 23 | + "astro": "^3.2.3", |
| 24 | + "rollup": "^3.20.2", |
| 25 | + "vite": "4.0.5" |
| 26 | + }, |
| 27 | + "scripts": { |
| 28 | + "build": "run-p build:transpile build:types", |
| 29 | + "build:dev": "yarn build", |
| 30 | + "build:transpile": "rollup -c rollup.npm.config.js --bundleConfigAsCjs", |
| 31 | + "build:types": "tsc -p tsconfig.types.json", |
| 32 | + "build:watch": "run-p build:transpile:watch build:types:watch", |
| 33 | + "build:dev:watch": "yarn build:watch", |
| 34 | + "build:transpile:watch": "rollup -c rollup.npm.config.js --bundleConfigAsCjs --watch", |
| 35 | + "build:types:watch": "tsc -p tsconfig.types.json --watch", |
| 36 | + "build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build", |
| 37 | + "circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts", |
| 38 | + "clean": "rimraf build coverage sentry-astro-*.tgz", |
| 39 | + "fix": "run-s fix:eslint fix:prettier", |
| 40 | + "fix:eslint": "eslint . --format stylish --fix", |
| 41 | + "fix:prettier": "prettier --write \"{src,test,scripts}/**/**.ts\"", |
| 42 | + "lint": "run-s lint:prettier lint:eslint", |
| 43 | + "lint:eslint": "eslint . --format stylish", |
| 44 | + "lint:prettier": "prettier --check \"{src,test,scripts}/**/**.ts\"", |
| 45 | + "test": "yarn test:unit", |
| 46 | + "test:unit": "vitest run", |
| 47 | + "test:watch": "vitest --watch", |
| 48 | + "yalc:publish": "ts-node ../../scripts/prepack.ts && yalc publish build --push" |
| 49 | + }, |
| 50 | + "volta": { |
| 51 | + "extends": "../../package.json" |
| 52 | + } |
| 53 | +} |
0 commit comments