@finema/finework-layer 0.0.2

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.
@@ -0,0 +1,3 @@
1
+ import withNuxt from './.playground/.nuxt/eslint.config.mjs'
2
+
3
+ export default withNuxt()
package/nuxt.config.ts ADDED
@@ -0,0 +1,42 @@
1
+ export default defineNuxtConfig({
2
+ modules: ['@nuxt/eslint', '@nuxt/test-utils', '@finema/core'],
3
+ imports: {
4
+ dirs: ['constants', 'loaders', 'helpers', 'types'],
5
+ },
6
+ devtools: {
7
+ enabled: true,
8
+ },
9
+ css: ['@vuepic/vue-datepicker/dist/main.css'],
10
+ ui: {
11
+ theme: {
12
+ colors: [
13
+ 'white',
14
+ ],
15
+ },
16
+ },
17
+ build: {
18
+ transpile: ['@vuepic/vue-datepicker'],
19
+ },
20
+ compatibilityDate: '2025-07-15',
21
+ vite: {
22
+ optimizeDeps: {
23
+ include: [
24
+ 'xlsx-js-style',
25
+ 'date-fns',
26
+ 'chart.js',
27
+ 'vue-chartjs',
28
+ '@vue/devtools-kit',
29
+ '@vue/devtools-core',
30
+ '@fullcalendar/vue3',
31
+ '@fullcalendar/multimonth',
32
+ '@fullcalendar/interaction',
33
+ ],
34
+ },
35
+ },
36
+ eslint: {
37
+ config: {
38
+ stylistic: true,
39
+ tooling: true,
40
+ },
41
+ },
42
+ })
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@finema/finework-layer",
3
+ "type": "module",
4
+ "version": "0.0.2",
5
+ "main": "./nuxt.config.ts",
6
+ "scripts": {
7
+ "dev": "nuxi dev .playground",
8
+ "dev:prepare": "nuxt prepare .playground",
9
+ "build": "nuxt build .playground",
10
+ "generate": "nuxt generate .playground",
11
+ "preview": "nuxt preview .playground",
12
+ "lint": "eslint . --quiet",
13
+ "lint:fix": "eslint --fix . --quiet",
14
+ "release": "release-it --ci"
15
+ },
16
+ "devDependencies": {
17
+ "@nuxt/eslint": "latest",
18
+ "@nuxt/test-utils": "^3.19.2",
19
+ "@release-it/conventional-changelog": "^10.0.1",
20
+ "eslint": "^9.37.0",
21
+ "nuxt": "^4.1.3",
22
+ "release-it": "^19.0.5",
23
+ "typescript": "^5.9.3",
24
+ "vue": "latest"
25
+ },
26
+ "dependencies": {
27
+ "@finema/core": "^2.43.1"
28
+ }
29
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "./.playground/.nuxt/tsconfig.json"
3
+ }