-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 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
{
"name": "ngx-fastboot",
"version": "1.4.0",
"sideEffects": false,
"description": "ngx-fastboot is an Angular library designed to dynamically load configuration settings at runtime, optimizing application startup performance by offloading configurations to a separate compilation chunk.",
"scripts": {
"test": "jest",
"build": "tsup",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"release": "semantic-release",
"prepare": "husky"
},
"module": "./dist/index.mjs",
"typings": "./dist/index.d.mts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/index.d.mts",
"esm2022": "./dist/index.mjs",
"esm": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"keywords": [
"angular",
"boot",
"lazy",
"configuration",
"providers",
"dynamic",
"performance",
"fastboot"
],
"readme": "README.md",
"author": "Iacopo Ciao",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KernelPanic92/ngx-fastboot.git"
},
"bugs": {
"url": "https://github.com/KernelPanic92/ngx-fastboot/issues"
},
"packageManager": "[email protected]",
"peerDependencies": {
"@angular/core": "^18.1.0",
"@angular/platform-browser": "^18.1.0"
},
"devDependencies": {
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/eslint-plugin": "18.4.0",
"@angular-eslint/eslint-plugin-template": "18.4.0",
"@angular-eslint/schematics": "18.4.0",
"@angular-eslint/template-parser": "18.4.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/format": "19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "github:semantic-release/git",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"commitlint": "19.5.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.2",
"prettier": "^3.3.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.4",
"tsup": "^8.2.4",
"typescript": "~5.6.0"
}
}