-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 KB
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
{
"name": "@allstak/angular",
"version": "0.2.0",
"description": "Official AllStak SDK for Angular — error tracking, structured logs, distributed tracing, and observability for Angular applications.",
"keywords": [
"angular",
"observability",
"error-tracking",
"logging",
"monitoring",
"tracing",
"allstak"
],
"homepage": "https://allstak.sa",
"repository": {
"type": "git",
"url": "git+https://github.com/AllStak/allstak-angular.git"
},
"bugs": "https://github.com/AllStak/allstak-angular/issues",
"license": "MIT",
"author": "AllStak <[email protected]>",
"sideEffects": false,
"scripts": {
"gen:version": "node scripts/gen-version.mjs",
"prebuild": "npm run gen:version",
"build": "ng-packagr -p ng-package.json",
"postbuild": "node scripts/fix-dist-manifest.mjs",
"pretypecheck": "npm run gen:version",
"typecheck": "tsc --noEmit -p tsconfig.lib.json",
"pretest": "npm run gen:version",
"test": "vitest run"
},
"peerDependencies": {
"@angular/common": ">=14.0.0 <19.0.0",
"@angular/core": ">=14.0.0 <19.0.0",
"@angular/router": ">=14.0.0 <19.0.0",
"rxjs": "^6.5.5 || ^7.0.0"
},
"peerDependenciesMeta": {
"@angular/router": {
"optional": true
}
},
"dependencies": {
"@allstak/js": "^0.3.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/router": "^18.2.0",
"@types/node": "^22.0.0",
"ng-packagr": "^18.2.0",
"rxjs": "^7.8.0",
"typescript": "~5.5.4",
"vitest": "^2.1.0",
"zone.js": "~0.14.0"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}