@cdek-it/angular-ui-kit 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +75 -0
- package/README.md +70 -0
- package/dist-css/css/brand-dark-primary-theme.css/theme.css +9924 -0
- package/dist-css/css/brand-dark-primary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/css/brand-dark-secondary-theme.css/theme.css +9924 -0
- package/dist-css/css/brand-dark-secondary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/css/brand-light-primary-theme.css/theme.css +10007 -0
- package/dist-css/css/brand-light-primary-theme.min.css/theme.min.css +2868 -0
- package/dist-css/css/brand-light-secondary-theme.css/theme.css +9924 -0
- package/dist-css/css/brand-light-secondary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/css/dark-primary-theme.css/theme.css +9924 -0
- package/dist-css/css/dark-primary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/css/dark-secondary-theme.css/theme.css +9924 -0
- package/dist-css/css/dark-secondary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/css/light-primary-theme.css/theme.css +10007 -0
- package/dist-css/css/light-primary-theme.min.css/theme.min.css +2868 -0
- package/dist-css/css/light-secondary-theme.css/theme.css +9924 -0
- package/dist-css/css/light-secondary-theme.min.css/theme.min.css +2852 -0
- package/dist-css/package.json +15 -0
- package/package.json +115 -0
package/package.json
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cdek-it/angular-ui-kit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"dist-css"
|
|
8
|
+
],
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"ng": "ng",
|
|
14
|
+
"start": "ng serve",
|
|
15
|
+
"test": "ng test",
|
|
16
|
+
"test:headless": "ng test --watch=false --browsers=ChromeHeadless",
|
|
17
|
+
"e2e": "ng e2e",
|
|
18
|
+
"lint": "ng lint",
|
|
19
|
+
"format": "prettier --write \"**/*.{js,ts,d.ts}\"",
|
|
20
|
+
"build": "npm run build-themes && ng build",
|
|
21
|
+
"format:check": "prettier --check \"**/*.{js,ts,d.ts}\"",
|
|
22
|
+
"build:lib": "npm run build:check && npm run build:package",
|
|
23
|
+
"build:package": "BROWSERSLIST_ENV=library ng build primeng-library && gulp build-assets",
|
|
24
|
+
"build:check": "npm run format:check && npm run security:check",
|
|
25
|
+
"security:check": "npm audit --production --audit-level high",
|
|
26
|
+
"apidoc": "node ./api-generator/build-apidoc.ts",
|
|
27
|
+
"build-themes": "node build-themes.js build",
|
|
28
|
+
"watch-themes": "node build-themes.js watch",
|
|
29
|
+
"build-theme-light-primary": "node build-themes.js build light-primary",
|
|
30
|
+
"build-theme-light-secondary": "node build-themes.js build light-secondary",
|
|
31
|
+
"build-theme-dark-primary": "node build-themes.js build dark-primary",
|
|
32
|
+
"build-theme-dark-secondary": "node build-themes.js build dark-secondary",
|
|
33
|
+
"watch-theme-light-primary": "node build-themes.js watch light-primary",
|
|
34
|
+
"watch-theme-light-secondary": "node build-themes.js watch light-secondary",
|
|
35
|
+
"watch-theme-dark-primary": "node build-themes.js watch dark-primary",
|
|
36
|
+
"watch-theme-dark-secondary": "node build-themes.js watch dark-secondary"
|
|
37
|
+
},
|
|
38
|
+
"repository": "github:cdek-it/angular-ui-kit",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@angular-devkit/build-angular": "18.2.19",
|
|
41
|
+
"@angular/build": "18.2.19",
|
|
42
|
+
"@angular-eslint/eslint-plugin": "18.0.0",
|
|
43
|
+
"@angular-eslint/eslint-plugin-template": "18.0.0",
|
|
44
|
+
"@angular-eslint/schematics": "18.0.0",
|
|
45
|
+
"@angular-eslint/template-parser": "18.0.0",
|
|
46
|
+
"@angular/animations": "18.2.13",
|
|
47
|
+
"@angular/cdk": "18.2.13",
|
|
48
|
+
"@angular/cli": "18.2.19",
|
|
49
|
+
"@angular/common": "18.2.13",
|
|
50
|
+
"@angular/compiler": "18.2.13",
|
|
51
|
+
"@angular/compiler-cli": "18.2.13",
|
|
52
|
+
"@angular/core": "18.2.13",
|
|
53
|
+
"@angular/forms": "18.2.13",
|
|
54
|
+
"@angular/platform-browser": "18.2.13",
|
|
55
|
+
"@angular/platform-browser-dynamic": "18.2.13",
|
|
56
|
+
"@angular/platform-server": "18.2.13",
|
|
57
|
+
"@angular/router": "18.2.13",
|
|
58
|
+
"@angular/ssr": "18.2.13",
|
|
59
|
+
"@docsearch/js": "^3.3.4",
|
|
60
|
+
"@stackblitz/sdk": "1.9.0",
|
|
61
|
+
"@tabler/icons-webfont": "^3.19.0",
|
|
62
|
+
"@types/express": "^4.17.17",
|
|
63
|
+
"@types/jasmine": "~4.3.1",
|
|
64
|
+
"@types/jest": "^29.5.1",
|
|
65
|
+
"@types/node": "^16.18.67",
|
|
66
|
+
"@types/react": "^18.2.41",
|
|
67
|
+
"@types/resize-observer-browser": "^0.1.11",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
|
69
|
+
"autoprefixer": "^10.4.20",
|
|
70
|
+
"chart.js": "4.4.2",
|
|
71
|
+
"codelyzer": "^0.0.28",
|
|
72
|
+
"copyfiles": "^2.4.1",
|
|
73
|
+
"del": "^7.1.0",
|
|
74
|
+
"domino": "^2.1.6",
|
|
75
|
+
"esbuild": "0.23.1",
|
|
76
|
+
"eslint": "^8.57.0",
|
|
77
|
+
"eslint-config-prettier": "^9.1.0",
|
|
78
|
+
"eslint-plugin-import": "latest",
|
|
79
|
+
"eslint-plugin-jsdoc": "latest",
|
|
80
|
+
"eslint-plugin-prefer-arrow": "latest",
|
|
81
|
+
"express": "^4.20.0",
|
|
82
|
+
"file-saver": "^2.0.5",
|
|
83
|
+
"glob": "10.4.5",
|
|
84
|
+
"gulp": "^5.0.0",
|
|
85
|
+
"gulp-concat": "^2.6.1",
|
|
86
|
+
"gulp-flatten": "^0.4.0",
|
|
87
|
+
"gulp-rename": "^2.0.0",
|
|
88
|
+
"gulp-uglify": "^3.0.2",
|
|
89
|
+
"gulp-uglifycss": "^1.1.0",
|
|
90
|
+
"jasmine-core": "~4.6.0",
|
|
91
|
+
"jspdf": "^2.5.1",
|
|
92
|
+
"jspdf-autotable": "^3.5.28",
|
|
93
|
+
"karma": "~6.4.2",
|
|
94
|
+
"karma-chrome-launcher": "~3.2.0",
|
|
95
|
+
"karma-coverage": "~2.2.0",
|
|
96
|
+
"karma-jasmine": "~5.1.0",
|
|
97
|
+
"karma-jasmine-html-reporter": "~2.0.0",
|
|
98
|
+
"minio": "8.0.5",
|
|
99
|
+
"ng-packagr": "^18.0.0",
|
|
100
|
+
"postcss": "^8.4.49",
|
|
101
|
+
"postcss-cli": "^11.0.0",
|
|
102
|
+
"prettier": "^3.0.0",
|
|
103
|
+
"primeicons": "^7.0.0",
|
|
104
|
+
"prismjs": "^1.29.0",
|
|
105
|
+
"quill": "2.0.2",
|
|
106
|
+
"rxjs": "~7.8.1",
|
|
107
|
+
"tailwindcss": "^3.4.14",
|
|
108
|
+
"ts-node": "~10.9.1",
|
|
109
|
+
"tslib": "^2.5.0",
|
|
110
|
+
"typedoc": "0.25.13",
|
|
111
|
+
"typescript": "5.4.5",
|
|
112
|
+
"xlsx": "^0.18.5",
|
|
113
|
+
"zone.js": "~0.14.0"
|
|
114
|
+
}
|
|
115
|
+
}
|