|
6 | 6 | "node": ">=10"
|
7 | 7 | },
|
8 | 8 | "private": true,
|
| 9 | + "main": "build/cjs/index.js", |
| 10 | + "module": "build/esm/index.js", |
| 11 | + "types": "build/types/src/index.d.ts", |
9 | 12 | "scripts": {
|
| 13 | + "build": "run-s build:transpile build:types", |
| 14 | + "build:dev": "yarn build", |
| 15 | + "build:transpile": "rollup -c rollup.npm.config.mjs", |
| 16 | + "build:types": "tsc -p tsconfig.types.json", |
10 | 17 | "clean": "rimraf -g **/node_modules",
|
11 | 18 | "prisma:init": "(cd suites/tracing/prisma-orm && ts-node ./setup.ts)",
|
12 | 19 | "prisma:init:new": "(cd suites/tracing-new/prisma-orm && ts-node ./setup.ts)",
|
|
15 | 22 | "type-check": "tsc",
|
16 | 23 | "pretest": "run-s --silent prisma:init prisma:init:new",
|
17 | 24 | "test": "ts-node ./utils/run-tests.ts",
|
| 25 | + "jest": "jest --config ./jest.config.js", |
18 | 26 | "test:watch": "yarn test --watch"
|
19 | 27 | },
|
20 | 28 | "dependencies": {
|
21 | 29 | "@prisma/client": "3.15.2",
|
22 | 30 | "@sentry/node": "7.93.0",
|
23 | 31 | "@sentry/tracing": "7.93.0",
|
| 32 | + "@sentry/types": "7.93.0", |
24 | 33 | "@types/mongodb": "^3.6.20",
|
25 | 34 | "@types/mysql": "^2.15.21",
|
26 | 35 | "@types/pg": "^8.6.5",
|
|
0 commit comments