@quandis/qbo4.fintech 4.0.1-CI-20240407-190836
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/package.json +44 -0
- package/src/Program.d.ts +3 -0
- package/src/Program.js +4 -0
- package/src/Program.js.map +1 -0
- package/src/Program.ts +3 -0
- package/wwwroot/js/qbo4.fintech.js +50766 -0
- package/wwwroot/js/qbo4.fintech.min.js +141 -0
- package/wwwroot/js/qbo4.fintech.min.js.LICENSE.txt +53 -0
- package/wwwroot/js/qbo4.fintech.min.js.map +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@quandis/qbo4.fintech",
|
|
3
|
+
"version": "4.0.1-CI-20240407-190836",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"types": "./src/Program.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./src/Program.js"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"wwwroot/js/",
|
|
13
|
+
"src/"
|
|
14
|
+
],
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@quandis/qbo4.configuration": "^4.0.1-CI-20240328-143640",
|
|
17
|
+
"@quandis/qbo4.logging": "^4.0.1-CI-20240328-192659",
|
|
18
|
+
"@quandis/qbo4.ui": "^4.0.1-CI-20240405-163539",
|
|
19
|
+
"bootstrap": "^5.3.3"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@fullhuman/postcss-purgecss": "^5.0.0",
|
|
23
|
+
"autoprefixer": "^10.4.18",
|
|
24
|
+
"clean-css": "^5.3.3",
|
|
25
|
+
"glob": "^10.3.10",
|
|
26
|
+
"mini-css-extract-plugin": "^2.8.1",
|
|
27
|
+
"postcss-cli": "^11.0.0",
|
|
28
|
+
"postcss-loader": "^8.1.1",
|
|
29
|
+
"sass": "^1.72.0",
|
|
30
|
+
"sass-loader": "^14.1.1",
|
|
31
|
+
"style-loader": "^3.3.4",
|
|
32
|
+
"typescript": "^5.4.2",
|
|
33
|
+
"webpack": "^5.90.3",
|
|
34
|
+
"webpack-cli": "^5.1.4",
|
|
35
|
+
"webpack-merge": "^5.10.0"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"sass": "sass scss/:wwwroot/css && node cssshake.js",
|
|
39
|
+
"postcss": "postcss \"wwwroot/css/*.css\" --use autoprefixer --replace",
|
|
40
|
+
"packdev": "webpack --config webpack.dev.js --no-color",
|
|
41
|
+
"packprod": "webpack --config webpack.prod.js --no-color",
|
|
42
|
+
"build": "npm run sass && tsc && npm run packdev && npm run packprod && del *.tgz && npm pack && ren *.tgz qbo4.fintech.tgz"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/src/Program.d.ts
ADDED
package/src/Program.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Program.js","sourceRoot":"","sources":["Program.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC"}
|
package/src/Program.ts
ADDED