@manojkmfsi/monodog 1.0.11 → 1.0.12

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/.eslintrc.cjs ADDED
@@ -0,0 +1,15 @@
1
+ module.exports = {
2
+ root: true,
3
+ parser: '@typescript-eslint/parser',
4
+ plugins: ['@typescript-eslint'],
5
+ extends: [
6
+ 'eslint:recommended',
7
+ 'plugin:@typescript-eslint/recommended',
8
+ ],
9
+ rules: {
10
+ '@typescript-eslint/explicit-module-boundary-types': 'off',
11
+ '@typescript-eslint/no-explicit-any': 'off',
12
+ "@typescript-eslint/no-unused-vars": "off",
13
+ },
14
+ ignorePatterns: ['dist', 'node_modules', '**/*.js'],
15
+ };
package/CHANGELOG.md ADDED
@@ -0,0 +1,103 @@
1
+ # @manojkmfsi/monoapp
2
+
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - remove postinstall
8
+
9
+ ## 1.0.4
10
+
11
+ ### Patch Changes
12
+
13
+ - updated installation script
14
+
15
+ ## 1.0.3
16
+
17
+ ### Patch Changes
18
+
19
+ - updated monodog folder
20
+
21
+ ## 1.0.2
22
+
23
+ ### Patch Changes
24
+
25
+ - updated pkg name
26
+
27
+ ## 1.0.1
28
+
29
+ ### Patch Changes
30
+
31
+ - updated pkg name
32
+
33
+ ## 3.1.1
34
+
35
+ ### Patch Changes
36
+
37
+ - updated org
38
+
39
+ ## 3.1.0
40
+
41
+ ### Minor Changes
42
+
43
+ - 76
44
+
45
+ ## 3.0.0
46
+
47
+ ### Major Changes
48
+
49
+ - 75
50
+
51
+ ## 2.1.0
52
+
53
+ ### Minor Changes
54
+
55
+ - 74
56
+
57
+ ## 2.0.2
58
+
59
+ ### Patch Changes
60
+
61
+ - 73
62
+
63
+ ## 2.0.1
64
+
65
+ ### Patch Changes
66
+
67
+ - 72
68
+
69
+ ## 2.0.0
70
+
71
+ ### Major Changes
72
+
73
+ - 71
74
+
75
+ ## 1.1.0
76
+
77
+ ### Minor Changes
78
+
79
+ - 67
80
+
81
+ ## 1.0.6
82
+
83
+ ### Patch Changes
84
+
85
+ - 66
86
+
87
+ ## 1.0.5
88
+
89
+ ### Patch Changes
90
+
91
+ - 40
92
+
93
+ ## 1.0.4
94
+
95
+ ### Patch Changes
96
+
97
+ - 39
98
+
99
+ ## 1.0.3
100
+
101
+ ### Patch Changes
102
+
103
+ - 35
@@ -0,0 +1,16 @@
1
+ {
2
+ "workspaces": [
3
+ "packages/*"
4
+ ],
5
+ "database": {
6
+ "path": "file:./monodog.db"
7
+ },
8
+ "dashboard": {
9
+ "host": "0.0.0.0",
10
+ "port": "3010"
11
+ },
12
+ "server": {
13
+ "host": "0.0.0.0",
14
+ "port": 8999
15
+ }
16
+ }