plugga 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.
package/dist/main.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ #!/usr/bin/env node
3
+
4
+ // src/main.ts
5
+ import { Command } from "commander";
6
+ var program = new Command();
7
+ program.name("plugga").description(
8
+ "Centralized CLI for managing service integrations and secrets across projects"
9
+ ).version("0.1.0");
10
+ program.parse();
11
+ //# sourceMappingURL=main.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/main.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport { Command } from 'commander';\n\nconst program = new Command();\n\nprogram\n .name('plugga')\n .description(\n 'Centralized CLI for managing service integrations and secrets across projects'\n )\n .version('0.1.0');\n\nprogram.parse();\n"],"mappings":";;;;AAEA,SAAS,eAAe;AAExB,IAAM,UAAU,IAAI,QAAQ;AAE5B,QACG,KAAK,QAAQ,EACb;AAAA,EACC;AACF,EACC,QAAQ,OAAO;AAElB,QAAQ,MAAM;","names":[]}
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "plugga",
3
+ "version": "0.1.0",
4
+ "description": "Centralized CLI for managing service integrations and secrets across projects",
5
+ "main": "dist/main.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "plugga": "dist/main.js"
9
+ },
10
+ "scripts": {
11
+ "dev": "tsx watch src/main.ts",
12
+ "start": "tsx src/main.ts",
13
+ "build": "tsup",
14
+ "typecheck": "tsc --noEmit",
15
+ "format": "prettier --write .",
16
+ "format:check": "prettier --check .",
17
+ "lint": "eslint .",
18
+ "lint:fix": "eslint --fix .",
19
+ "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
20
+ "test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch",
21
+ "test:coverage": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --coverage",
22
+ "prepare": "husky"
23
+ },
24
+ "keywords": [
25
+ "cli",
26
+ "secrets",
27
+ "integrations",
28
+ "1password",
29
+ "developer-tools",
30
+ "typescript"
31
+ ],
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "author": "",
36
+ "license": "MIT",
37
+ "engines": {
38
+ "node": ">=18.0.0"
39
+ },
40
+ "dependencies": {
41
+ "commander": "^14.0.3"
42
+ },
43
+ "devDependencies": {
44
+ "@eslint/js": "^10.0.1",
45
+ "@jest/globals": "^30.3.0",
46
+ "@trivago/prettier-plugin-sort-imports": "^6.0.2",
47
+ "@types/jest": "^30.0.0",
48
+ "@types/node": "^25.5.0",
49
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
50
+ "@typescript-eslint/parser": "^8.58.0",
51
+ "eslint": "^10.1.0",
52
+ "globals": "^17.4.0",
53
+ "husky": "^9.1.7",
54
+ "jest": "^30.3.0",
55
+ "lint-staged": "^16.4.0",
56
+ "prettier": "^3.8.1",
57
+ "ts-jest": "^29.4.9",
58
+ "tsup": "^8.5.1",
59
+ "tsx": "^4.21.0",
60
+ "typescript": "^6.0.2"
61
+ }
62
+ }