-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@sentry/angular",
"version": "9.0.0-alpha.0",
"description": "Official Sentry SDK for Angular",
"repository": "git://github.com/getsentry/sentry-javascript.git",
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular",
"author": "Sentry",
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"module": "build/fesm2015/sentry-angular.mjs",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@angular/common": ">= 14.x <= 19.x",
"@angular/core": ">= 14.x <= 19.x",
"@angular/router": ">= 14.x <= 19.x",
"rxjs": "^6.5.5 || ^7.x"
},
"dependencies": {
"@sentry/browser": "9.0.0-alpha.0",
"@sentry/core": "9.0.0-alpha.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.13",
"@angular/cli": "^14.2.13",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/compiler-cli": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@types/node": "^14.8.0",
"ng-packagr": "^14.2.2",
"rxjs": "7.8.1",
"typescript": "4.6.4",
"zone.js": "^0.12.0"
},
"scripts": {
"build": "yarn build:transpile",
"build:transpile": "ng build --configuration production",
"build:dev": "yarn build",
"build:watch": "yarn build:transpile:watch",
"build:dev:watch": "yarn build:watch",
"build:transpile:watch": "ng build --configuration production --watch",
"build:tarball": "npm pack ./build",
"circularDepCheck": "madge --circular src/index.ts",
"clean": "rimraf build coverage sentry-angular-*.tgz",
"fix": "eslint . --format stylish --fix",
"lint": "eslint . --format stylish",
"test": "yarn test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest --watch",
"yalc:publish": "yalc publish --push --sig"
},
"volta": {
"extends": "../../package.json"
},
"sideEffects": false,
"nx": {
"targets": {
"build:transpile": {
"dependsOn": [
"^build:transpile",
"^build:types"
],
"outputs": [
"{projectRoot}/build/esm2015",
"{projectRoot}/build/fesm2015",
"{projectRoot}/build/fesm2020",
"{projectRoot}/build/*.d.ts"
]
}
}
}
}