@sbc-connect/nuxt-pay 0.1.0

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 ADDED
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, bcgov
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # Nuxt Layer Starter
2
+
3
+ Create Nuxt extendable layer with this GitHub template.
4
+
5
+ ## Setup
6
+
7
+ Make sure to install the dependencies:
8
+
9
+ ```bash
10
+ pnpm install
11
+ ```
12
+
13
+ ## Working on your layer
14
+
15
+ Your layer is at the root of this repository, it is exactly like a regular Nuxt project, except you can publish it on NPM.
16
+
17
+ The `.playground` directory should help you on trying your layer during development.
18
+
19
+ Running `pnpm dev` will prepare and boot `.playground` directory, which imports your layer itself.
20
+
21
+ ## Distributing your layer
22
+
23
+ Your Nuxt layer is shaped exactly the same as any other Nuxt project, except you can publish it on NPM.
24
+
25
+ To do so, you only have to check if `files` in `package.json` are valid, then run:
26
+
27
+ ```bash
28
+ npm publish --access public
29
+ ```
30
+
31
+ Once done, your users will only have to run:
32
+
33
+ ```bash
34
+ npm install --save your-layer
35
+ ```
36
+
37
+ Then add the dependency to their `extends` in `nuxt.config`:
38
+
39
+ ```ts
40
+ defineNuxtConfig({
41
+ extends: 'your-layer'
42
+ })
43
+ ```
44
+
45
+ ## Development Server
46
+
47
+ Start the development server on http://localhost:3000
48
+
49
+ ```bash
50
+ pnpm dev
51
+ ```
52
+
53
+ ## Production
54
+
55
+ Build the application for production:
56
+
57
+ ```bash
58
+ pnpm build
59
+ ```
60
+
61
+ Or statically generate it with:
62
+
63
+ ```bash
64
+ pnpm generate
65
+ ```
66
+
67
+ Locally preview production build:
68
+
69
+ ```bash
70
+ pnpm preview
71
+ ```
72
+
73
+ Checkout the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
@@ -0,0 +1,10 @@
1
+ export default defineAppConfig({})
2
+
3
+ declare module '@nuxt/schema' {
4
+ interface AppConfigInput {
5
+ // myLayer?: {
6
+ // /** Project name */
7
+ // name?: string
8
+ // }
9
+ }
10
+ }
package/nuxt.config.ts ADDED
@@ -0,0 +1,10 @@
1
+ // https://nuxt.com/docs/api/configuration/nuxt-config
2
+ export default defineNuxtConfig({
3
+ ssr: false,
4
+
5
+ devtools: { enabled: false },
6
+
7
+ compatibilityDate: '2025-06-10',
8
+
9
+ extends: ['@sbc-connect/nuxt-auth']
10
+ })
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@sbc-connect/nuxt-pay",
3
+ "type": "module",
4
+ "version": "0.1.0",
5
+ "repository": "github:bcgov/connect-nuxt",
6
+ "main": "./nuxt.config.ts",
7
+ "devDependencies": {
8
+ "nuxt": "4.0.0",
9
+ "typescript": "^5.8.3",
10
+ "vue": "latest",
11
+ "@nuxtjs/i18n": "^9.5.5",
12
+ "@playwright/test": "^1.52.0",
13
+ "@axe-core/playwright": "^4.10.2",
14
+ "@faker-js/faker": "^9.8.0",
15
+ "@nuxt/test-utils": "^3.19.1",
16
+ "vitest": "^3.2.3",
17
+ "@vitest/coverage-v8": "^3.2.3",
18
+ "happy-dom": "^17.6.3",
19
+ "otpauth": "^9.4.0",
20
+ "@testing-library/vue": "^8.1.0",
21
+ "@vue/test-utils": "^2.4.6"
22
+ },
23
+ "dependencies": {
24
+ "@sbc-connect/nuxt-auth": "0.1.0"
25
+ },
26
+ "scripts": {
27
+ "preinstall": "npx only-allow pnpm",
28
+ "dev": "nuxi dev .playground",
29
+ "dev:prepare": "nuxt prepare .playground",
30
+ "build": "nuxt build .playground",
31
+ "generate": "nuxt generate .playground",
32
+ "preview": "nuxt preview .playground",
33
+ "lint": "eslint .",
34
+ "lint:fix": "eslint --fix ."
35
+ }
36
+ }