@networkpro/web 1.13.7 → 1.14.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.
Files changed (47) hide show
  1. package/.browserslistrc +5 -0
  2. package/.editorconfig +65 -0
  3. package/.env.template +18 -0
  4. package/.gitattributes +212 -0
  5. package/.github/COMMIT_GUIDE.md +31 -0
  6. package/.github/ISSUE_TEMPLATE/bug_report.yml +74 -0
  7. package/.github/ISSUE_TEMPLATE/config.yml +32 -0
  8. package/.github/ISSUE_TEMPLATE/feature_request.yml +35 -0
  9. package/.github/ISSUE_TEMPLATE/legal_review.yml +53 -0
  10. package/.github/workflows/auto-assign.yml +36 -0
  11. package/.github/workflows/backup-branch.yml +40 -0
  12. package/.github/workflows/build-and-publish.yml +202 -0
  13. package/.github/workflows/check-codeql.yml +40 -0
  14. package/.github/workflows/check-security-txt-expirty.yml +46 -0
  15. package/.github/workflows/dependency-review.yml +22 -0
  16. package/.github/workflows/lighthouse.yml +163 -0
  17. package/.github/workflows/playwright.yml +66 -0
  18. package/.github/workflows/publish-test.yml +215 -0
  19. package/.github/workflows/templates/check-codeql.template.yml +47 -0
  20. package/.lighthouserc.cjs +37 -0
  21. package/.markdownlint.mjs +31 -0
  22. package/.md-smart-quotes.js +31 -0
  23. package/.node-version +1 -0
  24. package/.nvmrc +1 -0
  25. package/.prettierignore +55 -0
  26. package/.prettierrc +35 -0
  27. package/.stylelintignore +43 -0
  28. package/.svelte-kit/tsconfig.json +49 -0
  29. package/.vscode/customData.json +73 -0
  30. package/.vscode/extensions.json +13 -0
  31. package/.vscode/extensions.jsonc +24 -0
  32. package/.vscode/settings.json +80 -0
  33. package/CHANGELOG.md +56 -2
  34. package/cspell.json +4 -0
  35. package/package.json +3 -3
  36. package/src/app.html +1 -1
  37. package/src/lib/components/ui/.gitkeep +0 -0
  38. package/src/lib/data/fossData.js +82 -2
  39. package/src/lib/images.js +6 -4
  40. package/src/lib/img/posts/cryptomator.png +0 -0
  41. package/src/lib/img/posts/cryptomator.webp +0 -0
  42. package/src/routes/...404/+page.svelte +26 -0
  43. package/static/.well-known/dnt-policy.txt +218 -0
  44. package/static/.well-known/gpc.json +4 -0
  45. package/static/.well-known/humans.txt +21 -0
  46. package/static/.well-known/security.txt +12 -0
  47. package/static/.well-known/security.txt.sig +7 -0
@@ -0,0 +1,5 @@
1
+ defaults and fully supports es6-module
2
+ maintained node versions
3
+ last 2 node major versions
4
+ last 2 versions
5
+ not dead
package/.editorconfig ADDED
@@ -0,0 +1,65 @@
1
+ # .editorconfig
2
+ #
3
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
4
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ # This file is part of Network Pro.
6
+ #
7
+ # EditorConfig helps developers define and maintain consistent
8
+ # coding styles between different editors and IDEs
9
+ # See http://editorconfig.org/ for full details
10
+
11
+ ; top-most EditorConfig file
12
+ root = true
13
+
14
+ ; define basic and global for any file
15
+ [*]
16
+ charset = utf-8
17
+ end_of_line = lf
18
+ indent_size = 2
19
+ indent_style = space
20
+ max_line_length = 80
21
+ insert_final_newline = true
22
+ trim_trailing_whitespace = true
23
+
24
+ ; DOS/Windows batch scripts - use Windows-based EOL formatting
25
+ [*.{bat,cmd}]
26
+ end_of_line = crlf
27
+
28
+ ; Cascading Stylesheets - maintain desired indent size
29
+ [*.css]
30
+ indent_size = 2
31
+
32
+ ; HTML files - maintain desired indent size
33
+ [*.{html,htm}]
34
+ indent_size = 2
35
+
36
+ ; JavaScript files -
37
+ [*.{mjs,js,ts}]
38
+ curly_bracket_next_line = true
39
+ quote_type = single
40
+
41
+ ; JSON files (normal and commented version) -
42
+ [*.{json,jsonc}]
43
+ indent_size = 2
44
+ quote_type = double
45
+
46
+ ; Make - match it own default syntax
47
+ [Makefile]
48
+ indent_style = tab
49
+
50
+ ; Markdown files - preserve trail spaces that means break line
51
+ [*.{md,markdown}]
52
+ trim_trailing_whitespace = false
53
+
54
+ ; PowerShell - match defaults for New-ModuleManifest and PSScriptAnalyzer Invoke-Formatter
55
+ [*.{ps1,psd1,psm1}]
56
+ charset = utf-8-bom
57
+ end_of_line = crlf
58
+
59
+ ; Svelte files - maintain desired indent size
60
+ [*.svelte]
61
+ indent_size = 2
62
+
63
+ ; YML config files - match it own default syntax
64
+ [*.{yaml,yml}]
65
+ indent_size = 2
package/.env.template ADDED
@@ -0,0 +1,18 @@
1
+ # ==========================================================================
2
+ # .env.template
3
+ #
4
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
5
+ # Environment template for Network Pro
6
+ # Rename to `.env` (or `.env.local`) and customize as needed
7
+ # ==========================================================================
8
+
9
+ # Custom environment mode for scripts and tooling
10
+ # One of: dev, test, ci, preview, prod
11
+ ENV_MODE=dev
12
+
13
+ # Optional: API keys or tokens for local dev (never commit real values)
14
+ #VITE_PUBLIC_API_URL=https://api.example.com
15
+ #VITE_PUBLIC_SITE_NAME=Network Pro
16
+
17
+ # ⚠️ DO NOT include sensitive credentials in VITE_ variables
18
+ # These are exposed to client-side code at build time
package/.gitattributes ADDED
@@ -0,0 +1,212 @@
1
+ # .gitattributes
2
+ #
3
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
4
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ # This file is part of Network Pro.
6
+ #
7
+ ## GITATTRIBUTES FOR WEB PROJECTS
8
+ #
9
+ # These settings are for any web project.
10
+ #
11
+ # Details per file setting:
12
+ # text These files should be normalized (i.e. convert CRLF to LF).
13
+ # binary These files are binary and should be left untouched.
14
+ #
15
+ # Note that binary is a macro for -text -diff.
16
+ ######################################################################
17
+
18
+ ## AUTO-DETECT
19
+ ## Handle line endings automatically for files detected as
20
+ ## text and leave all files detected as binary untouched.
21
+ ## This will handle all files NOT defined below.
22
+ * text=auto
23
+
24
+ ## SOURCE CODE
25
+ *.bat text eol=crlf
26
+ *.coffee text
27
+ *.cjs text
28
+ *.css text
29
+ *.htm text
30
+ *.html text
31
+ *.inc text
32
+ *.ini text
33
+ *.js text
34
+ *.json text
35
+ *.jsonc text
36
+ *.jsx text
37
+ *.less text
38
+ *.mjs text
39
+ *.od text
40
+ *.onlydata text
41
+ *.php text
42
+ *.pl text
43
+ *.py text
44
+ *.rb text
45
+ *.sass text
46
+ *.scm text
47
+ *.scss text
48
+ *.sh text eol=lf
49
+ *.sql text
50
+ *.styl text
51
+ *.svelte text
52
+ *.tag text
53
+ *.ts text
54
+ *.tsx text
55
+ *.xml text
56
+ *.xhtml text
57
+
58
+ ## DOCKER
59
+ *.dockerignore text
60
+ Dockerfile text
61
+
62
+ ## DOCUMENTATION
63
+ *.markdown text
64
+ *.md text
65
+ *.mdwn text
66
+ *.mdown text
67
+ *.mkd text
68
+ *.mkdn text
69
+ *.mdtxt text
70
+ *.mdtext text
71
+ *.txt text
72
+ AUTHORS text
73
+ CHANGELOG text
74
+ CHANGES text
75
+ CONTRIBUTING text
76
+ COPYING text
77
+ copyright text
78
+ *COPYRIGHT* text
79
+ INSTALL text
80
+ license text
81
+ LICENSE text
82
+ NEWS text
83
+ readme text
84
+ *README* text
85
+ TODO text
86
+
87
+ ## TEMPLATES
88
+ *.dot text
89
+ *.ejs text
90
+ *.haml text
91
+ *.handlebars text
92
+ *.hbs text
93
+ *.hbt text
94
+ *.jade text
95
+ *.latte text
96
+ *.mustache text
97
+ *.njk text
98
+ *.phtml text
99
+ *.tmpl text
100
+ *.tpl text
101
+ *.twig text
102
+
103
+ ## LINTERS
104
+ .babelrc text
105
+ .csslintrc text
106
+ .eslintrc text
107
+ .htmlhintrc text
108
+ .jscsrc text
109
+ .jshintrc text
110
+ .jshintignore text
111
+ .prettierrc text
112
+ .prettierignore text
113
+ .stylelintrc text
114
+ .stylelintignore text
115
+
116
+ ## CONFIGS
117
+ *.bowerrc text
118
+ *.cnf text
119
+ *.conf text
120
+ *.config text
121
+ .browserslistrc text
122
+ .editorconfig text
123
+ .gitattributes text
124
+ .gitconfig text
125
+ .gitignore text
126
+ .htaccess text
127
+ *.npmignore text
128
+ *.toml text
129
+ *.yaml text
130
+ *.yml text
131
+ browserslist text
132
+ Makefile text
133
+ makefile text
134
+
135
+ # NODE
136
+ .node-version text
137
+ .npmrc text
138
+ .nvmrc text
139
+
140
+ ## HEROKU
141
+ Procfile text
142
+ .slugignore text
143
+
144
+ ## GRAPHICS
145
+ *.ai binary
146
+ *.bmp binary
147
+ *.eps binary
148
+ *.gif binary
149
+ *.ico binary
150
+ *.jng binary
151
+ *.jp2 binary
152
+ *.jpg binary
153
+ *.jpeg binary
154
+ *.jpx binary
155
+ *.jxr binary
156
+ *.pdf binary
157
+ *.png binary
158
+ *.psb binary
159
+ *.psd binary
160
+ *.svg text
161
+ *.svgz binary
162
+ *.tif binary
163
+ *.tiff binary
164
+ *.wbmp binary
165
+ *.webp binary
166
+
167
+ ## AUDIO
168
+ *.kar binary
169
+ *.m4a binary
170
+ *.mid binary
171
+ *.midi binary
172
+ *.mp3 binary
173
+ *.ogg binary
174
+ *.ra binary
175
+
176
+ ## VIDEO
177
+ *.3gpp binary
178
+ *.3gp binary
179
+ *.as binary
180
+ *.asf binary
181
+ *.asx binary
182
+ *.fla binary
183
+ *.flv binary
184
+ *.m4v binary
185
+ *.mng binary
186
+ *.mov binary
187
+ *.mp4 binary
188
+ *.mpeg binary
189
+ *.mpg binary
190
+ *.ogv binary
191
+ *.swc binary
192
+ *.swf binary
193
+ *.webm binary
194
+
195
+ ## ARCHIVES
196
+ *.7z binary
197
+ *.gz binary
198
+ *.jar binary
199
+ *.rar binary
200
+ *.tar binary
201
+ *.zip binary
202
+
203
+ ## FONTS
204
+ *.ttf binary
205
+ *.eot binary
206
+ *.otf binary
207
+ *.woff binary
208
+ *.woff2 binary
209
+
210
+ ## EXECUTABLES
211
+ *.exe binary
212
+ *.pyc binary
@@ -0,0 +1,31 @@
1
+ # Commit Message Guide
2
+
3
+ To maintain clarity and consistency, use one of the following commit types when writing messages. Keep them short and focused — the `CHANGELOG.md` remains the source of truth for full details.
4
+
5
+ ## Commit Types
6
+
7
+ | Type | Description |
8
+ | ----------- | ------------------------------------------------------------ |
9
+ | `feat:` | A new feature or enhancement |
10
+ | `fix:` | A bug fix |
11
+ | `chore:` | Tooling, build scripts, release prep, or other meta changes |
12
+ | `docs:` | Documentation-only changes |
13
+ | `style:` | Formatting or stylistic changes that don't affect behavior |
14
+ | `refactor:` | Code changes that restructure without changing functionality |
15
+ | `test:` | Adding or updating tests |
16
+
17
+ ## Examples
18
+
19
+ - `feat: add cryptomator entry to FOSS spotlight`
20
+ - `fix: correct author metadata in app.html`
21
+ - `chore: prepare v1.13.8 release`
22
+ - `docs: update changelog for v1.13.8`
23
+ - `style: clean up indentation in layout.svelte`
24
+ - `refactor: split utility functions from helpers.js`
25
+ - `test: add unit tests for buildPath util`
26
+
27
+ ---
28
+
29
+ Stick to one type per commit when possible. For mixed changes, pick the most meaningful one.
30
+
31
+ Consistency helps, but don’t overthink it — use what makes sense.
@@ -0,0 +1,74 @@
1
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
2
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
+ # This file is part of Network Pro
4
+
5
+ name: 🐛 Bug Report
6
+ description: 'File a report to help us improve.'
7
+ title: '[Bug]: '
8
+ labels: ['bug', 'needs triage']
9
+ assignees: SunDevil311
10
+
11
+ body:
12
+ - type: markdown
13
+ attributes:
14
+ value: |
15
+ Thanks for taking the time to fill out a bug report! Please complete all required fields below.
16
+
17
+ - type: input
18
+ id: contact
19
+ attributes:
20
+ label: 'Contact Details'
21
+ description: 'How can we get in touch with you if we need more information?'
22
+ placeholder: 'your@email.com'
23
+ validations:
24
+ required: false
25
+
26
+ - type: textarea
27
+ id: what-happened
28
+ attributes:
29
+ label: 'What happened?'
30
+ description: 'Describe the bug. What did you expect to happen?'
31
+ placeholder: 'Tell us what you see!'
32
+ validations:
33
+ required: true
34
+
35
+ - type: textarea
36
+ id: steps-to-reproduce
37
+ attributes:
38
+ label: 'Steps to Reproduce'
39
+ description: 'List clear steps to reproduce the issue.'
40
+ placeholder: |
41
+ 1. Go to '...'
42
+ 2. Click on '...'
43
+ 3. Scroll down to '...'
44
+ 4. See error
45
+ validations:
46
+ required: true
47
+
48
+ - type: input
49
+ id: environment
50
+ attributes:
51
+ label: 'Environment'
52
+ description: 'What platform, OS, browser, or version are you using?'
53
+ placeholder: 'e.g. macOS 14, Chrome 125, iOS 17.5'
54
+ validations:
55
+ required: false
56
+
57
+ - type: checkboxes
58
+ attributes:
59
+ label: 'Prerequisites'
60
+ description: 'Please confirm the following before submitting:'
61
+ options:
62
+ - label: 'I have searched for [duplicate or closed issues](https://github.com/netwk-pro/netwk-pro.github.io/issues)'
63
+ required: true
64
+ - label: 'I have read the [contributing guidelines](https://github.com/netwk-pro/.github/blob/master/.github/CONTRIBUTING.md)'
65
+ required: true
66
+
67
+ - type: textarea
68
+ id: additional
69
+ attributes:
70
+ label: 'Additional Information'
71
+ description: 'Add any other context, screenshots, or system logs here.'
72
+ placeholder: 'Anything else we should know?'
73
+ validations:
74
+ required: false
@@ -0,0 +1,32 @@
1
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
2
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
+ # This file is part of Network Pro
4
+
5
+ blank_issues_enabled: true
6
+ contact_links:
7
+ - name: Ask the community
8
+ url: https://github.com/netwk-pro/netwk-pro.github.io/discussions
9
+ about: 'Ask and discuss questions with other Network Pro Strategies community members.'
10
+
11
+ - name: Commonly asked questions
12
+ url: https://stackoverflowteams.com/c/netwk-pro/questions
13
+ about: 'Ask and answer common questions on Stack Overflow Teams.'
14
+
15
+ - name: Contact Network Pro Strategies
16
+ url: https://netwk.pro/contact?utm_source=github
17
+ about: 'Contact Network Pro Strategies for support or inquiries.'
18
+ issue_templates:
19
+ - name: 🐛 Bug Report
20
+ description: Report a bug or unexpected behavior in the platform.
21
+ labels: ['bug', 'needs triage']
22
+ file: bug_report.yml
23
+
24
+ - name: ✨ Feature Request
25
+ description: Suggest new or updated features to include in Network Pro Strategies.
26
+ labels: ['feature']
27
+ file: feature_request.yml
28
+
29
+ - name: ⚖️ Legal Review
30
+ description: Request review or update of legal or compliance documents.
31
+ labels: ['legal-docs', 'legal review', 'documentation']
32
+ file: legal_review.yml
@@ -0,0 +1,35 @@
1
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
2
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
+ # This file is part of Network Pro
4
+
5
+ name: '✨ Feature Request'
6
+ description: 'Suggest new or updated features to include in Network Pro Strategies.'
7
+ title: '[Feature]: '
8
+ labels: ['feature']
9
+ assignees: SunDevil311
10
+ body:
11
+ - type: checkboxes
12
+ attributes:
13
+ label: Prerequisites
14
+ description: 'Take a couple minutes to help our maintainers work faster.'
15
+ options:
16
+ - label: 'I have [searched](https://github.com/netwk-pro/netwk-pro.github.io/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed issues'
17
+ required: true
18
+ - label: 'I have read the [contributing guidelines](https://github.com/netwk-pro/.github/blob/master/.github/CONTRIBUTING.md)'
19
+ required: true
20
+ - type: textarea
21
+ id: proposal
22
+ attributes:
23
+ label: Proposal
24
+ description: 'Provide detailed information for what we should add, including relevant links to prior art, screenshots, or live demos whenever possible.'
25
+ placeholder: "Describe the feature, how it would work, and why it's valuable."
26
+ validations:
27
+ required: true
28
+ - type: textarea
29
+ id: motivation
30
+ attributes:
31
+ label: 'Motivation and context'
32
+ description: 'Tell us why this change is needed or helpful, and what problems it may help solve.'
33
+ placeholder: 'Explain your use case or what this would improve for others.'
34
+ validations:
35
+ required: true
@@ -0,0 +1,53 @@
1
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
2
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
+ # This file is part of Network Pro
4
+
5
+ name: '⚖️ Legal Review'
6
+ description: 'Request review or update of legal or compliance documents.'
7
+ title: '[Legal] '
8
+ labels: ['legal-docs', 'legal review', 'documentation']
9
+ assignees: SunDevil311
10
+
11
+ body:
12
+ - type: input
13
+ id: document
14
+ attributes:
15
+ label: '📄 Document or Policy Name'
16
+ description: 'Specify which document needs attention.'
17
+ validations:
18
+ required: true
19
+
20
+ - type: checkboxes
21
+ id: update_type
22
+ attributes:
23
+ label: '✏️ Type of Update'
24
+ description: 'Select all that apply.'
25
+ options:
26
+ - label: 'New Draft'
27
+ - label: 'Edit / Revision'
28
+ - label: 'Compliance Alignment'
29
+ - label: 'Client Feedback Update'
30
+
31
+ - type: textarea
32
+ id: summary
33
+ attributes:
34
+ label: '🧠 Summary'
35
+ description: "Brief summary of what's being reviewed or updated."
36
+ validations:
37
+ required: true
38
+
39
+ - type: textarea
40
+ id: legal_notes
41
+ attributes:
42
+ label: '🕵️‍♀️ Legal/Compliance Notes'
43
+ description: 'Add citations, standards, or frameworks (e.g., GDPR, HIPAA, NIST).'
44
+ validations:
45
+ required: false
46
+
47
+ - type: textarea
48
+ id: references
49
+ attributes:
50
+ label: '🔗 References or Attachments'
51
+ description: 'Link to related documents or add supporting context.'
52
+ validations:
53
+ required: false
@@ -0,0 +1,36 @@
1
+ # .github/workflows/auto-assign.yml
2
+ #
3
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
4
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ # This file is part of Network Pro
6
+ #
7
+ # This workflow will auto-assign an issue or PR to a specific user
8
+ # when a new issue or PR is opened.
9
+
10
+ # cspell:ignore pozil
11
+
12
+ name: 'Auto Assign'
13
+
14
+ permissions:
15
+ issues: write
16
+ contents: read
17
+ pull-requests: write
18
+
19
+ on:
20
+ issues:
21
+ types: [opened]
22
+ pull_request:
23
+ types: [opened, edited, synchronize, reopened]
24
+
25
+ jobs:
26
+ auto-assign:
27
+ runs-on: ubuntu-24.04
28
+
29
+ steps:
30
+ - name: 'Auto-assign issue or PR'
31
+ uses: pozil/auto-assign-issue@v2
32
+ with:
33
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
34
+ assignees: SunDevil311
35
+ numOfAssignee: 1
36
+ allowSelfAssign: true
@@ -0,0 +1,40 @@
1
+ # .github/workflows/backup-branch.yml
2
+ #
3
+ # Syncs backup/nightly-snapshot branch with master every day at 10:00 UTC.
4
+ # Only triggers on the default branch and not on PRs
5
+ #
6
+ # Copyright © 2025 Network Pro Strategies (Network Pro™)
7
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
8
+ # This file is part of Network Pro
9
+
10
+ name: Nightly Backup Branch Sync
11
+
12
+ on:
13
+ schedule:
14
+ - cron: '0 10 * * *' # Every day at 10:00 AM UTC
15
+ workflow_dispatch: # Allow manual triggering too
16
+
17
+ permissions:
18
+ contents: write
19
+
20
+ jobs:
21
+ sync-backup:
22
+ name: Sync backup/nightly-snapshot to master
23
+ runs-on: ubuntu-24.04
24
+ if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request'
25
+
26
+ steps:
27
+ - name: Checkout master branch
28
+ uses: actions/checkout@v4
29
+ with:
30
+ ref: master
31
+ fetch-depth: 0 # Required to push to another branch
32
+
33
+ - name: Set up Git
34
+ run: |
35
+ git config user.name "SunDevil311"
36
+ git config user.email "github@sl.neteng.cc"
37
+
38
+ - name: Force-push to backup/nightly-snapshot
39
+ run: |
40
+ git push --force origin HEAD:refs/heads/backup/nightly-snapshot