-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
{
"name": "custom-angular-builders",
"version": "18.2.1",
"description": "Wrapper for ngPackagr with FESM entry-point autodiscovery",
"main": "dist/builder.js",
"module": "dist/builder.js",
"author": "Maxim Kotelnikov <mail@maximkotelnikov.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/impy88/angular-builders/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/impy88/angular-builders.git"
},
"homepage": "https://github.com/impy88/angular-builders#readme",
"scripts": {
"build": "npm run build:schema && tsc -p tsconfig.json",
"build:schema": "json2ts lib/schema.json -o ./lib/schema.ts",
"prebuild": "rimraf dist"
},
"builders": "builders.json",
"peerDependencies": {
"@angular-devkit/architect": ">=0.1802.0",
"@angular-devkit/core": "^18.2",
"ng-packagr": ">=18.2",
"rxjs": ">=7"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"fast-glob": "^3.3.2",
"injection-js": "^2.4.0",
"ora": "~5.4.0",
"rollup-plugin-auto-entry": ">=2.0.2"
},
"files": [
"dist",
"README.md",
"LICENSE",
"builders.json"
],
"devDependencies": {
"@angular-devkit/architect": "~0.1802.0",
"@angular-devkit/core": "~18.2.1",
"@angular/compiler": "~18.2.1",
"@angular/compiler-cli": "~18.2.1",
"@types/node": "^22.5.0",
"json-schema-to-typescript": "^14.0.0",
"ng-packagr": "^18.2.1",
"rimraf": "^5.0.1",
"rollup": "4.17.2",
"rxjs": "7.8.1",
"tslib": "^2.6.0",
"typescript": "~5.5.4"
},
"resolutions": {
"rxjs": "7.8.1"
}
}