@hed-hog/lms 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,10 @@
1
+ {
2
+ "DashboardPage": {
3
+ "title": "Courses",
4
+ "description": "Manage your LMS integrations and settings.",
5
+ "breadcrumbs": {
6
+ "home": "Home",
7
+ "lms": "LMS"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "DashboardPage": {
3
+ "title": "Cursos",
4
+ "description": "Gerencie suas integrações e configurações do LMS.",
5
+ "breadcrumbs": {
6
+ "home": "Início",
7
+ "lms": "LMS"
8
+ }
9
+ }
10
+ }
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@hed-hog/lms",
3
+ "version": "0.0.2",
4
+ "main": "dist/index.js",
5
+ "types": "dist/index.d.ts",
6
+ "dependencies": {
7
+ "@nestjs/common": "*",
8
+ "@nestjs/config": "^4.0.2",
9
+ "@nestjs/core": "^11",
10
+ "@nestjs/jwt": "^11",
11
+ "@nestjs/mapped-types": "*",
12
+ "@hed-hog/api": "0.0.3",
13
+ "@hed-hog/api-locale": "0.0.11",
14
+ "@hed-hog/api-pagination": "0.0.5",
15
+ "@hed-hog/api-prisma": "0.0.4",
16
+ "@hed-hog/api-types": "0.0.1"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/index.js",
21
+ "require": "./dist/index.js"
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "src",
28
+ "hedhog"
29
+ ],
30
+ "scripts": {
31
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
32
+ "prebuild": "pnpm exec ts-node ../../scripts/build-dependencies.ts libraries/lms",
33
+ "build": "tsc --project tsconfig.production.json",
34
+ "patch": "pnpm exec ts-node ../../scripts/patch.ts libraries/lms",
35
+ "prod": "pnpm run patch && pnpm run build && pnpm publish --access public --no-git-checks"
36
+ }
37
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lms.module';
@@ -0,0 +1,15 @@
1
+ import { forwardRef, Module } from '@nestjs/common';
2
+ import { ConfigModule } from '@nestjs/config';
3
+ import { LocaleModule } from '@hed-hog/api-locale';
4
+ import { PaginationModule } from '@hed-hog/api-pagination';
5
+ import { PrismaModule } from '@hed-hog/api-prisma';
6
+
7
+ @Module({
8
+ imports: [
9
+ ConfigModule.forRoot(),
10
+ forwardRef(() => PaginationModule),
11
+ forwardRef(() => PrismaModule),
12
+ forwardRef(() => LocaleModule)
13
+ ]
14
+ })
15
+ export class LmsModule {}