Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
70 lines
2.1 KiB
Text
70 lines
2.1 KiB
Text
{
|
|
"name": "@sentry/core",
|
|
"version": "9.46.0",
|
|
"description": "Base implementation for all Sentry JavaScript SDKs",
|
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core",
|
|
"author": "Sentry",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"files": [
|
|
"/build"
|
|
],
|
|
"main": "build/cjs/index.js",
|
|
"module": "build/esm/index.js",
|
|
"types": "build/types/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./build/types/index.d.ts",
|
|
"default": "./build/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./build/types/index.d.ts",
|
|
"default": "./build/cjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"<5.0": {
|
|
"build/types/index.d.ts": [
|
|
"build/types-ts3.8/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"tag": "v9"
|
|
},
|
|
"scripts": {
|
|
"build": "run-p build:transpile build:types",
|
|
"build:dev": "yarn build",
|
|
"build:transpile": "rollup -c rollup.npm.config.mjs",
|
|
"build:types": "run-s build:types:core build:types:downlevel",
|
|
"build:types:core": "tsc -p tsconfig.types.json",
|
|
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
|
|
"build:watch": "run-p build:transpile:watch build:types:watch",
|
|
"build:dev:watch": "yarn build:watch",
|
|
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
|
|
"build:types:watch": "tsc -p tsconfig.types.json --watch",
|
|
"build:tarball": "npm pack",
|
|
"circularDepCheck": "madge --circular src/index.ts",
|
|
"clean": "rimraf build coverage sentry-core-*.tgz",
|
|
"fix": "eslint . --format stylish --fix",
|
|
"lint": "eslint . --format stylish",
|
|
"lint:es-compatibility": "es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest --watch",
|
|
"yalc:publish": "yalc publish --push --sig"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
},
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"zod": "^3.24.1"
|
|
}
|
|
}
|