@hesed/sentry 0.1.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.
Files changed (47) hide show
  1. package/README.md +453 -0
  2. package/bin/dev.cmd +3 -0
  3. package/bin/dev.js +5 -0
  4. package/bin/run.cmd +3 -0
  5. package/bin/run.js +5 -0
  6. package/dist/commands/sentry/auth/add.d.ts +14 -0
  7. package/dist/commands/sentry/auth/add.js +56 -0
  8. package/dist/commands/sentry/auth/test.d.ts +10 -0
  9. package/dist/commands/sentry/auth/test.js +32 -0
  10. package/dist/commands/sentry/auth/update.d.ts +14 -0
  11. package/dist/commands/sentry/auth/update.js +68 -0
  12. package/dist/commands/sentry/event/get.d.ts +13 -0
  13. package/dist/commands/sentry/event/get.js +31 -0
  14. package/dist/commands/sentry/event/source-maps.d.ts +15 -0
  15. package/dist/commands/sentry/event/source-maps.js +40 -0
  16. package/dist/commands/sentry/issue/event.d.ts +13 -0
  17. package/dist/commands/sentry/issue/event.js +34 -0
  18. package/dist/commands/sentry/issue/events.d.ts +18 -0
  19. package/dist/commands/sentry/issue/events.js +47 -0
  20. package/dist/commands/sentry/issue/get.d.ts +12 -0
  21. package/dist/commands/sentry/issue/get.js +28 -0
  22. package/dist/commands/sentry/issue/hashes.d.ts +13 -0
  23. package/dist/commands/sentry/issue/hashes.js +32 -0
  24. package/dist/commands/sentry/issue/tag-values.d.ts +15 -0
  25. package/dist/commands/sentry/issue/tag-values.js +36 -0
  26. package/dist/commands/sentry/issue/tag.d.ts +14 -0
  27. package/dist/commands/sentry/issue/tag.js +33 -0
  28. package/dist/commands/sentry/issue/update.d.ts +18 -0
  29. package/dist/commands/sentry/issue/update.js +54 -0
  30. package/dist/commands/sentry/org/issues.d.ts +19 -0
  31. package/dist/commands/sentry/org/issues.js +57 -0
  32. package/dist/commands/sentry/project/events.d.ts +17 -0
  33. package/dist/commands/sentry/project/events.js +44 -0
  34. package/dist/commands/sentry/project/issues.d.ts +16 -0
  35. package/dist/commands/sentry/project/issues.js +44 -0
  36. package/dist/config.d.ts +10 -0
  37. package/dist/config.js +18 -0
  38. package/dist/format.d.ts +4 -0
  39. package/dist/format.js +10 -0
  40. package/dist/index.d.ts +1 -0
  41. package/dist/index.js +1 -0
  42. package/dist/sentry/sentry-api.d.ts +127 -0
  43. package/dist/sentry/sentry-api.js +176 -0
  44. package/dist/sentry/sentry-client.d.ts +61 -0
  45. package/dist/sentry/sentry-client.js +66 -0
  46. package/oclif.manifest.json +937 -0
  47. package/package.json +105 -0
package/package.json ADDED
@@ -0,0 +1,105 @@
1
+ {
2
+ "name": "@hesed/sentry",
3
+ "description": "CLI for Sentry error tracking API interaction",
4
+ "version": "0.1.0",
5
+ "author": "Hesed",
6
+ "bin": {
7
+ "sentry": "./bin/run.js"
8
+ },
9
+ "bugs": "https://github.com/hesedcasa/sentry/issues",
10
+ "dependencies": {
11
+ "@inquirer/prompts": "^8.2.0",
12
+ "@oclif/core": "^4",
13
+ "@toon-format/toon": "^2.1.0",
14
+ "fs-extra": "^11.3.3"
15
+ },
16
+ "devDependencies": {
17
+ "@eslint/compat": "^1",
18
+ "@oclif/prettier-config": "^0.2.1",
19
+ "@oclif/test": "^4",
20
+ "@types/chai": "^5",
21
+ "@types/fs-extra": "^11.0.4",
22
+ "@types/mocha": "^10",
23
+ "@types/node": "^25",
24
+ "@types/sinon": "^21.0.0",
25
+ "c8": "^11.0.0",
26
+ "chai": "^6",
27
+ "eslint": "^9",
28
+ "eslint-config-oclif": "^6",
29
+ "eslint-config-prettier": "^10",
30
+ "esmock": "^2.7.3",
31
+ "mocha": "^11",
32
+ "oclif": "^4",
33
+ "prettier": "^3.8.1",
34
+ "shx": "^0.4.0",
35
+ "ts-node": "^10",
36
+ "ts-prune": "^0.10.3",
37
+ "typescript": "^5"
38
+ },
39
+ "engines": {
40
+ "node": ">=18.0.0"
41
+ },
42
+ "files": [
43
+ "./bin",
44
+ "./dist",
45
+ "./oclif.manifest.json"
46
+ ],
47
+ "homepage": "https://github.com/hesedcasa/sentry",
48
+ "keywords": [
49
+ "oclif"
50
+ ],
51
+ "license": "Apache-2.0",
52
+ "main": "dist/index.js",
53
+ "type": "module",
54
+ "oclif": {
55
+ "bin": "sentry",
56
+ "dirname": "sentry",
57
+ "commands": "./dist/commands",
58
+ "plugins": [
59
+ "@oclif/plugin-*"
60
+ ],
61
+ "topicSeparator": " ",
62
+ "topics": {},
63
+ "update": {
64
+ "autoupdate": {
65
+ "debounce": 7
66
+ }
67
+ }
68
+ },
69
+ "repository": "hesedcasa/sentry",
70
+ "scripts": {
71
+ "build": "shx rm -rf dist tsconfig.tsbuildinfo && tsc -b",
72
+ "lint": "eslint",
73
+ "postpack": "shx rm -f oclif.manifest.json",
74
+ "posttest": "npm run lint",
75
+ "prepack": "oclif manifest && oclif readme",
76
+ "test": "mocha --forbid-only \"test/**/*.test.ts\"",
77
+ "test:coverage": "c8 npm test",
78
+ "test:coverage:report": "c8 --reporter=html --reporter=text npm test",
79
+ "version": "oclif readme && git add README.md",
80
+ "find-deadcode": "ts-prune --ignore '(run|default)'",
81
+ "format": "eslint --cache --fix --quiet . && prettier --write --cache .",
82
+ "pre-commit": "npm run format && npm run find-deadcode"
83
+ },
84
+ "types": "dist/index.d.ts",
85
+ "c8": {
86
+ "include": [
87
+ "src/**/*.ts"
88
+ ],
89
+ "exclude": [
90
+ "src/**/*.d.ts",
91
+ "test/**/*"
92
+ ],
93
+ "reporter": [
94
+ "text",
95
+ "lcov",
96
+ "html"
97
+ ],
98
+ "all": true,
99
+ "check-coverage": true,
100
+ "lines": 50,
101
+ "functions": 50,
102
+ "branches": 50,
103
+ "statements": 50
104
+ }
105
+ }