-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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": "angular-perfect-select",
"version": "3.0.0",
"description": "A modern, feature-rich select component for Angular with react-select API compatibility",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ng build --watch",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint"
},
"keywords": [
"angular",
"select",
"dropdown",
"multi-select",
"async",
"creatable",
"component",
"ui"
],
"author": "Ishan Karunaratne <ishansasika@gmail.com>",
"license": "MIT",
"homepage": "https://angular-perfect-select.ishansasika.dev",
"repository": {
"type": "git",
"url": "https://github.com/ishansasika/angular-perfect-select.git"
},
"peerDependencies": {
"@angular/animations": "^21.0.0",
"@angular/cdk": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~21.0.5",
"@angular/animations": "~21.0.5",
"@angular/cdk": "~21.0.0",
"@angular/cli": "~21.0.5",
"@angular/common": "~21.0.5",
"@angular/compiler": "~21.0.5",
"@angular/compiler-cli": "~21.0.5",
"@angular/core": "~21.0.5",
"@angular/forms": "~21.0.5",
"@angular/platform-browser": "~21.0.5",
"@angular/platform-browser-dynamic": "~21.0.5",
"ng-packagr": "~21.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.8.0",
"typescript": "~5.9.0",
"zone.js": "~0.15.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}