@trojeancedric/sentinel-cli 1.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/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/config/define-config.ts
4
+ function defineConfig(config) {
5
+ return config;
6
+ }
7
+ export {
8
+ defineConfig
9
+ };
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/config/define-config.ts"],"sourcesContent":["import type { SentinelUserConfig } from './schema.js'\n\n/**\n * Type-safe helper for authoring sentinel.config.ts files.\n * Provides full IntelliSense and compile-time validation.\n *\n * @example\n * ```typescript\n * // sentinel.config.ts\n * import { defineConfig } from '@trojeancedric/sentinel-cli'\n *\n * export default defineConfig({\n * schemaVersion: '1.0',\n * project: {\n * organization: 'acme-inc',\n * project: 'web-app',\n * },\n * })\n * ```\n */\nexport function defineConfig(config: SentinelUserConfig): SentinelUserConfig {\n return config\n}\n"],"mappings":";;;AAoBO,SAAS,aAAa,QAAgD;AAC3E,SAAO;AACT;","names":[]}
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ confirmPrompt
4
+ } from "./chunk-YZV3YGP4.js";
5
+ export {
6
+ confirmPrompt
7
+ };
8
+ //# sourceMappingURL=prompt-QIYBGJFK.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@trojeancedric/sentinel-cli",
3
+ "version": "1.0.0",
4
+ "description": "Open-Source Testing, Monitoring, and Reliability — as Code",
5
+ "keywords": [
6
+ "monitoring",
7
+ "testing",
8
+ "playwright",
9
+ "k6",
10
+ "cli",
11
+ "devops",
12
+ "automation",
13
+ "ci-cd"
14
+ ],
15
+ "homepage": "https://supercheck.io",
16
+ "bugs": {
17
+ "url": "https://github.com/supercheck-io/supercheck/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/supercheck-io/supercheck.git"
22
+ },
23
+ "author": "Supercheck <hello@supercheck.io>",
24
+ "type": "module",
25
+ "license": "Supercheck Community License",
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "tag": "latest"
29
+ },
30
+ "engines": {
31
+ "node": ">=18.0.0"
32
+ },
33
+ "bin": {
34
+ "sentinel": "dist/bin/sentinel.js"
35
+ },
36
+ "main": "./dist/index.js",
37
+ "types": "./dist/index.d.ts",
38
+ "exports": {
39
+ ".": {
40
+ "types": "./dist/index.d.ts",
41
+ "import": "./dist/index.js"
42
+ }
43
+ },
44
+ "files": [
45
+ "dist",
46
+ "README.md"
47
+ ],
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "typecheck": "tsc --noEmit",
52
+ "lint": "eslint src/",
53
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
54
+ "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests --watch",
55
+ "test:cov": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests --coverage",
56
+ "release:latest": "npm run build && npm test && npm publish --tag latest --access public",
57
+ "sentinel": "tsx src/bin/sentinel.ts"
58
+ },
59
+ "dependencies": {
60
+ "cli-table3": "^0.6.5",
61
+ "commander": "^13.1.0",
62
+ "conf": "^13.1.0",
63
+ "deepmerge-ts": "^7.1.5",
64
+ "dotenv": "^17.2.4",
65
+ "jiti": "^2.4.2",
66
+ "ora": "^9.3.0",
67
+ "picocolors": "^1.1.1",
68
+ "undici": "^6.21.1",
69
+ "zod": "^3.24.2"
70
+ },
71
+ "devDependencies": {
72
+ "@eslint/js": "^9.19.0",
73
+ "@types/jest": "^30.0.0",
74
+ "@types/node": "^22.13.0",
75
+ "eslint": "^9.19.0",
76
+ "jest": "^30.2.0",
77
+ "ts-jest": "^29.4.6",
78
+ "tsup": "^8.4.0",
79
+ "tsx": "^4.19.2",
80
+ "typescript": "^5.7.3",
81
+ "typescript-eslint": "^8.55.0"
82
+ }
83
+ }