-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.37 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.37 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
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
100
101
102
103
104
{
"name": "ngxsmk-datatable",
"version": "1.7.0",
"description": "A powerful, feature-rich Angular datatable component with virtual scrolling, built for Angular 17+",
"keywords": [
"angular",
"datatable",
"table",
"virtual-scrolling",
"pagination",
"sorting",
"selection",
"row-details",
"material",
"typescript",
"typed-rows",
"type-safe",
"standalone",
"angular17",
"angular18",
"angular19",
"ngxsmk",
"grid",
"data-grid",
"filtering",
"export",
"customizable"
],
"author": "Sachin Dilshan <sachindilshan040@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/toozuuu/ngxsmk-datatable.git"
},
"bugs": {
"url": "https://github.com/toozuuu/ngxsmk-datatable/issues"
},
"homepage": "https://github.com/toozuuu/ngxsmk-datatable#readme",
"stackblitz": "https://stackblitz.com/~/github.com/toozuuu/ngxsmk-datatable",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"peerDependencies": {
"@angular/common": "^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/forms": "^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/platform-browser": "^17.0.0 || ^18.0.0 || ^19.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular/animations": "^17.0.0",
"@angular/cli": "^17.0.0",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/compiler-cli": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/platform-server": "^17.0.0",
"@angular/router": "^17.0.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.0.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"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": "^17.0.0",
"rimraf": "^5.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.3.0",
"typescript": "~5.4.0",
"zone.js": "^0.14.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve demo-app",
"build": "ng build ngxsmk-datatable",
"build:lib": "ng build ngxsmk-datatable",
"build:lib:watch": "ng build ngxsmk-datatable --watch",
"build:lib:prod": "ng build ngxsmk-datatable --configuration production",
"build:demo": "ng build demo-app",
"build:demo:prod": "ng build demo-app --configuration production",
"build:all": "npm run build:lib && npm run build:demo",
"build:optimized": "npm run clean && npm run build:lib:prod && node scripts/optimize-build.js",
"analyze": "npm run build:lib:prod && node scripts/analyze-bundle.js",
"test": "ng test",
"test:lib": "ng test ngxsmk-datatable",
"test:demo": "ng test demo-app",
"lint": "ng lint",
"pack": "npm run build:optimized && cd dist/ngxsmk-datatable && npm pack",
"publish:lib": "npm run build:optimized && cd dist/ngxsmk-datatable && npm publish",
"clean": "rimraf dist out-tsc node_modules/.cache",
"clean:all": "npm run clean && rimraf node_modules package-lock.json",
"dev": "npm run build:lib:watch",
"demo": "npm start",
"size": "node scripts/analyze-bundle.js",
"optimize": "node scripts/optimize-build.js"
}
}