@trianjs/shared-center 0.0.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 +21 -0
- package/README.md +2 -0
- package/dist/console/index.d.ts +4 -0
- package/dist/console/index.js +3 -0
- package/dist/core/console/index.d.ts +2 -0
- package/dist/core/console/index.js +10 -0
- package/dist/core/console/index.js.map +1 -0
- package/dist/core/enums/database-driver.enum.d.ts +3 -0
- package/dist/core/enums/database-driver.enum.js +5 -0
- package/dist/core/enums/database-driver.enum.js.map +1 -0
- package/dist/core/enums/index.d.ts +3 -0
- package/dist/core/enums/index.js +4 -0
- package/dist/core/enums/index.js.map +1 -0
- package/dist/core/enums/migration-action.enum.d.ts +4 -0
- package/dist/core/enums/migration-action.enum.js +6 -0
- package/dist/core/enums/migration-action.enum.js.map +1 -0
- package/dist/core/enums/sql-dml.enum.d.ts +6 -0
- package/dist/core/enums/sql-dml.enum.js +8 -0
- package/dist/core/enums/sql-dml.enum.js.map +1 -0
- package/dist/core/index.d.ts +4 -0
- package/dist/core/index.js +5 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/types/databases/index.d.ts +2 -0
- package/dist/core/types/databases/index.js +2 -0
- package/dist/core/types/databases/index.js.map +1 -0
- package/dist/core/types/index.d.ts +2 -0
- package/dist/core/types/index.js +3 -0
- package/dist/core/types/index.js.map +1 -0
- package/dist/core/types/modules/index.d.ts +1 -0
- package/dist/core/types/modules/index.js +2 -0
- package/dist/core/types/modules/index.js.map +1 -0
- package/dist/core/utils/app-path.util.d.ts +8 -0
- package/dist/core/utils/app-path.util.js +26 -0
- package/dist/core/utils/app-path.util.js.map +1 -0
- package/dist/core/utils/index.d.ts +1 -0
- package/dist/core/utils/index.js +2 -0
- package/dist/core/utils/index.js.map +1 -0
- package/dist/enums/database-driver.enum.d.ts +5 -0
- package/dist/enums/database-driver.enum.js +1 -0
- package/dist/enums/index.d.ts +3 -0
- package/dist/enums/index.js +1 -0
- package/dist/enums/migration-action.enum.d.ts +6 -0
- package/dist/enums/migration-action.enum.js +1 -0
- package/dist/enums/sql-dml.enum.d.ts +8 -0
- package/dist/enums/sql-dml.enum.js +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +3 -0
- package/dist/types/databases/index.d.ts +5 -0
- package/dist/types/databases/index.js +0 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +0 -0
- package/dist/types/modules/index.d.ts +3 -0
- package/dist/types/modules/index.js +0 -0
- package/dist/utils/app-path.util.d.ts +10 -0
- package/dist/utils/app-path.util.js +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/package.json +76 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Poppyyddod
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var l=Object.defineProperty;var e=(o,n)=>l(o,"name",{value:n,configurable:!0});import r from"chalk";function i(o,...n){console.log(`
|
|
2
|
+
`,r.redBright.bold.underline("CQQQQ>"),o,...n)}e(i,"errorLog");function t(o,...n){console.log(`
|
|
3
|
+
`,r.yellowBright.bold.underline("CQQQQ>"),o,...n)}e(t,"successLog");export{i as errorLog,t as successLog};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import chalk from "chalk";
|
|
2
|
+
// Use chalk to style the console output
|
|
3
|
+
export function errorLog(message, ...options) {
|
|
4
|
+
console.log('\n', chalk.redBright.bold.underline('CQQQQ>'), message, ...options);
|
|
5
|
+
}
|
|
6
|
+
// i want parameter like console.log
|
|
7
|
+
export function successLog(message, ...options) {
|
|
8
|
+
console.log('\n', chalk.yellowBright.bold.underline('CQQQQ>'), message, ...options);
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/console/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,wCAAwC;AACxC,MAAM,UAAU,QAAQ,CAAC,OAAa,EAAE,GAAG,OAAc;IACrD,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,CAAC;AACrF,CAAC;AAED,oCAAoC;AACpC,MAAM,UAAU,UAAU,CAAC,OAAa,EAAE,GAAG,OAAc;IACvD,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,CAAC;AACxF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"database-driver.enum.js","sourceRoot":"","sources":["../../../src/core/enums/database-driver.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,kBAEX;AAFD,WAAY,kBAAkB;IAC1B,qCAAe,CAAA;AACnB,CAAC,EAFW,kBAAkB,KAAlB,kBAAkB,QAE7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"migration-action.enum.js","sourceRoot":"","sources":["../../../src/core/enums/migration-action.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,gCAAS,CAAA;IACT,oCAAa,CAAA;AACjB,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export var SqlDmlEnum;
|
|
2
|
+
(function (SqlDmlEnum) {
|
|
3
|
+
SqlDmlEnum["INSERT"] = "insert";
|
|
4
|
+
SqlDmlEnum["UPDATE"] = "update";
|
|
5
|
+
SqlDmlEnum["DELETE"] = "delete";
|
|
6
|
+
SqlDmlEnum["SELECT"] = "select";
|
|
7
|
+
})(SqlDmlEnum || (SqlDmlEnum = {}));
|
|
8
|
+
//# sourceMappingURL=sql-dml.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sql-dml.enum.js","sourceRoot":"","sources":["../../../src/core/enums/sql-dml.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;AACrB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/core/types/databases/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TrianHttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'options' | 'head';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/core/types/modules/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const getDotTrianPath: () => string;
|
|
2
|
+
export declare const getControllerPath: () => string;
|
|
3
|
+
export declare const getControllerModulePath: (moduleName: string) => string;
|
|
4
|
+
export declare const getModulePath: () => string;
|
|
5
|
+
export declare const getDatabasePath: () => string;
|
|
6
|
+
export declare const getMigrationPath: () => string;
|
|
7
|
+
export declare const getRepositoryPath: () => string;
|
|
8
|
+
export declare const getModelPath: () => string;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
export const getDotTrianPath = () => {
|
|
3
|
+
return path.resolve('src/.trian');
|
|
4
|
+
};
|
|
5
|
+
export const getControllerPath = () => {
|
|
6
|
+
return path.resolve('src/app/controllers');
|
|
7
|
+
};
|
|
8
|
+
export const getControllerModulePath = (moduleName) => {
|
|
9
|
+
return path.resolve(`src/app/modules/${moduleName}`);
|
|
10
|
+
};
|
|
11
|
+
export const getModulePath = () => {
|
|
12
|
+
return path.resolve('src/app/modules');
|
|
13
|
+
};
|
|
14
|
+
export const getDatabasePath = () => {
|
|
15
|
+
return path.resolve('src/app/databases');
|
|
16
|
+
};
|
|
17
|
+
export const getMigrationPath = () => {
|
|
18
|
+
return path.resolve('src/app/databases/migrations');
|
|
19
|
+
};
|
|
20
|
+
export const getRepositoryPath = () => {
|
|
21
|
+
return path.resolve('src/app/repositories');
|
|
22
|
+
};
|
|
23
|
+
export const getModelPath = () => {
|
|
24
|
+
return path.resolve('src/app/models');
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=app-path.util.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-path.util.js","sourceRoot":"","sources":["../../../src/core/utils/app-path.util.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,MAAM,CAAC,MAAM,eAAe,GAAG,GAAW,EAAE;IACxC,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;AACtC,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAW,EAAE;IAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAC/C,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,UAAkB,EAAU,EAAE;IAClE,OAAO,IAAI,CAAC,OAAO,CAAC,mBAAmB,UAAU,EAAE,CAAC,CAAC;AACzD,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,aAAa,GAAG,GAAW,EAAE;IACtC,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAC3C,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,eAAe,GAAG,GAAW,EAAE;IACxC,OAAO,IAAI,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC;AAC7C,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAW,EAAE;IACzC,OAAO,IAAI,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAC;AACxD,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAW,EAAE;IAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC;AAChD,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,YAAY,GAAG,GAAW,EAAE;IACrC,OAAO,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAC1C,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './app-path.util.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var m=(l=>(l.MYSQL="mysql",l))(m||{});export{m as DatabaseDriverEnum};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var r=(e=>(e.INSERT="insert",e.UPDATE="update",e.DELETE="delete",e.SELECT="select",e))(r||{});var x=(o=>(o.MYSQL="mysql",o))(x||{});var t=(p=>(p.UP="up",p.DOWN="down",p))(t||{});export{x as DatabaseDriverEnum,t as MigrationActionEnum,r as SqlDmlEnum};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var p=(e=>(e.UP="up",e.DOWN="down",e))(p||{});export{p as MigrationActionEnum};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var t=(e=>(e.INSERT="insert",e.UPDATE="update",e.DELETE="delete",e.SELECT="select",e))(t||{});export{t as SqlDmlEnum};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { errorLog, successLog } from './console/index.js';
|
|
2
|
+
export { SqlDmlEnum } from './enums/sql-dml.enum.js';
|
|
3
|
+
export { DatabaseDriverEnum } from './enums/database-driver.enum.js';
|
|
4
|
+
export { MigrationActionEnum } from './enums/migration-action.enum.js';
|
|
5
|
+
export { TrianDatabaseDriver } from './types/databases/index.js';
|
|
6
|
+
export { TrianHttpMethod } from './types/modules/index.js';
|
|
7
|
+
export { getControllerModulePath, getControllerPath, getDatabasePath, getDotTrianPath, getMigrationPath, getModelPath, getModulePath, getRepositoryPath } from './utils/app-path.util.js';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var a=Object.defineProperty;var r=(o,t)=>a(o,"name",{value:t,configurable:!0});import n from"chalk";function d(o,...t){console.log(`
|
|
2
|
+
`,n.redBright.bold.underline("CQQQQ>"),o,...t)}r(d,"errorLog");function u(o,...t){console.log(`
|
|
3
|
+
`,n.yellowBright.bold.underline("CQQQQ>"),o,...t)}r(u,"successLog");var l=(s=>(s.INSERT="insert",s.UPDATE="update",s.DELETE="delete",s.SELECT="select",s))(l||{});var c=(t=>(t.MYSQL="mysql",t))(c||{});var g=(p=>(p.UP="up",p.DOWN="down",p))(g||{});import e from"path";var w=r(()=>e.resolve("src/.trian"),"getDotTrianPath"),B=r(()=>e.resolve("src/app/controllers"),"getControllerPath"),N=r(o=>e.resolve(`src/app/modules/${o}`),"getControllerModulePath"),R=r(()=>e.resolve("src/app/modules"),"getModulePath"),U=r(()=>e.resolve("src/app/databases"),"getDatabasePath"),k=r(()=>e.resolve("src/app/databases/migrations"),"getMigrationPath"),I=r(()=>e.resolve("src/app/repositories"),"getRepositoryPath"),O=r(()=>e.resolve("src/app/models"),"getModelPath");export{c as DatabaseDriverEnum,g as MigrationActionEnum,l as SqlDmlEnum,d as errorLog,N as getControllerModulePath,B as getControllerPath,U as getDatabasePath,w as getDotTrianPath,k as getMigrationPath,O as getModelPath,R as getModulePath,I as getRepositoryPath,u as successLog};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const getDotTrianPath: () => string;
|
|
2
|
+
declare const getControllerPath: () => string;
|
|
3
|
+
declare const getControllerModulePath: (moduleName: string) => string;
|
|
4
|
+
declare const getModulePath: () => string;
|
|
5
|
+
declare const getDatabasePath: () => string;
|
|
6
|
+
declare const getMigrationPath: () => string;
|
|
7
|
+
declare const getRepositoryPath: () => string;
|
|
8
|
+
declare const getModelPath: () => string;
|
|
9
|
+
|
|
10
|
+
export { getControllerModulePath, getControllerPath, getDatabasePath, getDotTrianPath, getMigrationPath, getModelPath, getModulePath, getRepositoryPath };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var o=Object.defineProperty;var r=(e,s)=>o(e,"name",{value:s,configurable:!0});import t from"path";var p=r(()=>t.resolve("src/.trian"),"getDotTrianPath"),l=r(()=>t.resolve("src/app/controllers"),"getControllerPath"),g=r(e=>t.resolve(`src/app/modules/${e}`),"getControllerModulePath"),i=r(()=>t.resolve("src/app/modules"),"getModulePath"),c=r(()=>t.resolve("src/app/databases"),"getDatabasePath"),u=r(()=>t.resolve("src/app/databases/migrations"),"getMigrationPath"),h=r(()=>t.resolve("src/app/repositories"),"getRepositoryPath"),d=r(()=>t.resolve("src/app/models"),"getModelPath");export{g as getControllerModulePath,l as getControllerPath,c as getDatabasePath,p as getDotTrianPath,u as getMigrationPath,d as getModelPath,i as getModulePath,h as getRepositoryPath};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getControllerModulePath, getControllerPath, getDatabasePath, getDotTrianPath, getMigrationPath, getModelPath, getModulePath, getRepositoryPath } from './app-path.util.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var s=Object.defineProperty;var r=(e,o)=>s(e,"name",{value:o,configurable:!0});import t from"path";var p=r(()=>t.resolve("src/.trian"),"getDotTrianPath"),l=r(()=>t.resolve("src/app/controllers"),"getControllerPath"),g=r(e=>t.resolve(`src/app/modules/${e}`),"getControllerModulePath"),i=r(()=>t.resolve("src/app/modules"),"getModulePath"),c=r(()=>t.resolve("src/app/databases"),"getDatabasePath"),u=r(()=>t.resolve("src/app/databases/migrations"),"getMigrationPath"),h=r(()=>t.resolve("src/app/repositories"),"getRepositoryPath"),x=r(()=>t.resolve("src/app/models"),"getModelPath");export{g as getControllerModulePath,l as getControllerPath,c as getDatabasePath,p as getDotTrianPath,u as getMigrationPath,x as getModelPath,i as getModulePath,h as getRepositoryPath};
|
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trianjs/shared-center",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"description": "Trian.js shared-center",
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"module": "dist/index.mjs",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": "./dist/index.js",
|
|
21
|
+
"require": "./dist/index.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "rimraf dist && rimraf node_modules/@trianjs && tsup && npm run build:library",
|
|
26
|
+
"dev": "nodemon --exec \"ts-node -r tsconfig-paths/register\" src/index.ts",
|
|
27
|
+
"build:library": "tsc && cpx \"dist/**/*\" \"node_modules/@trianjs/shared-center\"",
|
|
28
|
+
"test": "jest --verbose",
|
|
29
|
+
"publish-patch": "npm version patch && npm publish --access public",
|
|
30
|
+
"publish-minor": "npm version minor && npm publish --access public",
|
|
31
|
+
"publish-major": "npm version major && npm publish --access public",
|
|
32
|
+
"git-commit-dirty": "git add . && git commit -m 'Update to prepare publish'"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/Poppyyddod/Trianjs-Shared-Center.git"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"typescript",
|
|
40
|
+
"shared-center",
|
|
41
|
+
"validation",
|
|
42
|
+
"frontend",
|
|
43
|
+
"backend"
|
|
44
|
+
],
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"chalk": "^4.1.2",
|
|
48
|
+
"dotenv": "^17.2.3",
|
|
49
|
+
"inquirer": "^12.9.4",
|
|
50
|
+
"mysql2": "^3.15.3"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/dotenv": "^6.1.1",
|
|
54
|
+
"@types/inquirer": "^9.0.9",
|
|
55
|
+
"@types/jest": "^30.0.0",
|
|
56
|
+
"@types/node": "^24.10.1",
|
|
57
|
+
"chokidar": "^5.0.0",
|
|
58
|
+
"cpx": "^1.5.0",
|
|
59
|
+
"jest": "^30.0.5",
|
|
60
|
+
"nodemon": "^3.1.11",
|
|
61
|
+
"rimraf": "^6.0.1",
|
|
62
|
+
"ts-jest": "^29.4.1",
|
|
63
|
+
"ts-node": "^10.9.2",
|
|
64
|
+
"tsconfig-paths": "^4.2.0",
|
|
65
|
+
"tsup": "^8.5.1",
|
|
66
|
+
"tsx": "^4.21.0",
|
|
67
|
+
"typescript": "^5.9.3"
|
|
68
|
+
},
|
|
69
|
+
"directories": {
|
|
70
|
+
"test": "test"
|
|
71
|
+
},
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/Poppyyddod/Trianjs-Shared-Center/issues"
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://github.com/Poppyyddod/Trianjs-Shared-Center"
|
|
76
|
+
}
|