dicoshot-nest 0.0.1

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.
Files changed (45) hide show
  1. package/README.md +98 -0
  2. package/dist/dicoshot-core/src/client/dicoshot.client.d.ts +4 -0
  3. package/dist/dicoshot-core/src/client/dicoshot.client.impl.d.ts +8 -0
  4. package/dist/dicoshot-core/src/client/dicoshot.client.impl.js +21 -0
  5. package/dist/dicoshot-core/src/client/dicoshot.client.impl.js.map +1 -0
  6. package/dist/dicoshot-core/src/client/dicoshot.client.js +3 -0
  7. package/dist/dicoshot-core/src/client/dicoshot.client.js.map +1 -0
  8. package/dist/dicoshot-core/src/index.d.ts +5 -0
  9. package/dist/dicoshot-core/src/index.js +8 -0
  10. package/dist/dicoshot-core/src/index.js.map +1 -0
  11. package/dist/dicoshot-core/src/message/discord.message.d.ts +16 -0
  12. package/dist/dicoshot-core/src/message/discord.message.js +3 -0
  13. package/dist/dicoshot-core/src/message/discord.message.js.map +1 -0
  14. package/dist/dicoshot-core/src/message/message.factory.d.ts +10 -0
  15. package/dist/dicoshot-core/src/message/message.factory.js +90 -0
  16. package/dist/dicoshot-core/src/message/message.factory.js.map +1 -0
  17. package/dist/dicoshot-core/src/options/dicoshot.options.d.ts +9 -0
  18. package/dist/dicoshot-core/src/options/dicoshot.options.js +3 -0
  19. package/dist/dicoshot-core/src/options/dicoshot.options.js.map +1 -0
  20. package/dist/dicoshot-nest/src/app.controller.d.ts +6 -0
  21. package/dist/dicoshot-nest/src/app.controller.js +35 -0
  22. package/dist/dicoshot-nest/src/app.controller.js.map +1 -0
  23. package/dist/dicoshot-nest/src/app.module.d.ts +2 -0
  24. package/dist/dicoshot-nest/src/app.module.js +23 -0
  25. package/dist/dicoshot-nest/src/app.module.js.map +1 -0
  26. package/dist/dicoshot-nest/src/app.service.d.ts +3 -0
  27. package/dist/dicoshot-nest/src/app.service.js +20 -0
  28. package/dist/dicoshot-nest/src/app.service.js.map +1 -0
  29. package/dist/dicoshot-nest/src/dicoshot.constants.d.ts +1 -0
  30. package/dist/dicoshot-nest/src/dicoshot.constants.js +5 -0
  31. package/dist/dicoshot-nest/src/dicoshot.constants.js.map +1 -0
  32. package/dist/dicoshot-nest/src/dicoshot.listener.d.ts +11 -0
  33. package/dist/dicoshot-nest/src/dicoshot.listener.js +61 -0
  34. package/dist/dicoshot-nest/src/dicoshot.listener.js.map +1 -0
  35. package/dist/dicoshot-nest/src/dicoshot.module.d.ts +11 -0
  36. package/dist/dicoshot-nest/src/dicoshot.module.js +41 -0
  37. package/dist/dicoshot-nest/src/dicoshot.module.js.map +1 -0
  38. package/dist/dicoshot-nest/src/index.d.ts +4 -0
  39. package/dist/dicoshot-nest/src/index.js +10 -0
  40. package/dist/dicoshot-nest/src/index.js.map +1 -0
  41. package/dist/dicoshot-nest/src/main.d.ts +1 -0
  42. package/dist/dicoshot-nest/src/main.js +10 -0
  43. package/dist/dicoshot-nest/src/main.js.map +1 -0
  44. package/dist/tsconfig.build.tsbuildinfo +1 -0
  45. package/package.json +81 -0
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "dicoshot-nest",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "author": "",
6
+ "private": false,
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "license": "UNLICENSED",
13
+ "scripts": {
14
+ "build": "nest build",
15
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
16
+ "start": "nest start",
17
+ "start:dev": "nest start --watch",
18
+ "start:debug": "nest start --debug --watch",
19
+ "start:prod": "node dist/main",
20
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
21
+ "test": "jest",
22
+ "test:watch": "jest --watch",
23
+ "test:cov": "jest --coverage",
24
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
25
+ "test:e2e": "jest --config ./test/jest-e2e.json"
26
+ },
27
+ "dependencies": {
28
+ "@nestjs/common": "^11.0.1",
29
+ "@nestjs/core": "^11.0.1",
30
+ "@nestjs/platform-express": "^11.0.1",
31
+ "dicoshot-core": "*",
32
+ "reflect-metadata": "^0.2.2",
33
+ "rxjs": "^7.8.1"
34
+ },
35
+ "peerDependencies": {
36
+ "@nestjs/common": "^10",
37
+ "@nestjs/core": "^10"
38
+ },
39
+ "devDependencies": {
40
+ "@eslint/eslintrc": "^3.2.0",
41
+ "@eslint/js": "^9.18.0",
42
+ "@nestjs/cli": "^11.0.0",
43
+ "@nestjs/schematics": "^11.0.0",
44
+ "@nestjs/testing": "^11.0.1",
45
+ "@types/express": "^5.0.0",
46
+ "@types/jest": "^30.0.0",
47
+ "@types/node": "^24.0.0",
48
+ "@types/supertest": "^7.0.0",
49
+ "eslint": "^9.18.0",
50
+ "eslint-config-prettier": "^10.0.1",
51
+ "eslint-plugin-prettier": "^5.2.2",
52
+ "globals": "^17.0.0",
53
+ "jest": "^30.0.0",
54
+ "prettier": "^3.4.2",
55
+ "source-map-support": "^0.5.21",
56
+ "supertest": "^7.0.0",
57
+ "ts-jest": "^29.2.5",
58
+ "ts-loader": "^9.5.2",
59
+ "ts-node": "^10.9.2",
60
+ "tsconfig-paths": "^4.2.0",
61
+ "typescript": "^5.7.3",
62
+ "typescript-eslint": "^8.20.0"
63
+ },
64
+ "jest": {
65
+ "moduleFileExtensions": [
66
+ "js",
67
+ "json",
68
+ "ts"
69
+ ],
70
+ "rootDir": "src",
71
+ "testRegex": ".*\\.spec\\.ts$",
72
+ "transform": {
73
+ "^.+\\.(t|j)s$": "ts-jest"
74
+ },
75
+ "collectCoverageFrom": [
76
+ "**/*.(t|j)s"
77
+ ],
78
+ "coverageDirectory": "../coverage",
79
+ "testEnvironment": "node"
80
+ }
81
+ }