-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ngwr",
"version": "0.0.0-NOT-USED",
"private": true,
"scripts": {
"dev": "ng serve --o",
"test": "ng test",
"lint": "ng lint",
"release:patch": "tsx ./scripts/make-release.ts --release-as=patch",
"release:minor": "tsx ./scripts/make-release.ts --release-as=minor",
"release:major": "tsx ./scripts/make-release.ts --release-as=major",
"build:lib": "tsx ./scripts/build-lib.ts",
"build:showcase": "tsx ./scripts/build-showcase.ts",
"publish:lib": "tsx ./scripts/publish.ts"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 9.15.4"
},
"packageManager": "[email protected]",
"pnpm": {
"allowedDeprecatedVersions": true
},
"dependencies": {
"@angular/animations": "^19.1.5",
"@angular/cdk": "^19.1.3",
"@angular/common": "^19.1.5",
"@angular/compiler": "^19.1.5",
"@angular/core": "^19.1.5",
"@angular/forms": "^19.1.5",
"@angular/platform-browser": "^19.1.5",
"@angular/platform-browser-dynamic": "^19.1.5",
"@angular/router": "^19.1.5",
"chalk": "^5.4.1",
"highlight.js": "^11.11.1",
"js-beautify": "^1.15.1",
"ngx-highlightjs": "^14.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-extensions/svg-icons-builder": "^11.0.0",
"@angular/build": "^19.1.6",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.5",
"@eslint/js": "^9.19.0",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/jasmine": "~5.1.5",
"@types/js-beautify": "^1.14.3",
"@types/node": "^22.13.1",
"angular-eslint": "19.0.2",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-prettier": "^5.2.3",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^19.1.2",
"prettier": "3.4.2",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"typescript-eslint": "8.21.0"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "tsx ./scripts/postbump.ts"
},
"packageFiles": [
"projects/lib/package.json"
],
"bumpFiles": [
{
"filename": "projects/lib/package.json",
"type": "json"
}
],
"header": "# Changelog",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "deprecate",
"section": "Deprecated"
}
]
}
}