latchkey 0.1.0 → 0.1.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.
Files changed (42) hide show
  1. package/package.json +8 -8
  2. package/.nvmrc +0 -1
  3. package/.pre-commit-config.yaml +0 -22
  4. package/.prettierignore +0 -4
  5. package/.prettierrc +0 -7
  6. package/CLAUDE.md +0 -13
  7. package/docs/development.md +0 -94
  8. package/eslint.config.js +0 -30
  9. package/integrations/SKILL.md +0 -62
  10. package/scripts/cryptFile.ts +0 -123
  11. package/scripts/recordBrowserSession.ts +0 -280
  12. package/scripts/tsconfig.json +0 -10
  13. package/src/apiCredentialStore.ts +0 -87
  14. package/src/apiCredentials.ts +0 -180
  15. package/src/cli.ts +0 -32
  16. package/src/cliCommands.ts +0 -321
  17. package/src/config.ts +0 -115
  18. package/src/curl.ts +0 -78
  19. package/src/encryptedStorage.ts +0 -161
  20. package/src/encryption.ts +0 -106
  21. package/src/index.ts +0 -65
  22. package/src/keychain.ts +0 -105
  23. package/src/playwrightUtils.ts +0 -143
  24. package/src/registry.ts +0 -35
  25. package/src/services/base.ts +0 -234
  26. package/src/services/discord.ts +0 -73
  27. package/src/services/dropbox.ts +0 -173
  28. package/src/services/github.ts +0 -139
  29. package/src/services/index.ts +0 -13
  30. package/src/services/linear.ts +0 -134
  31. package/src/services/slack.ts +0 -85
  32. package/tests/apiCredentialStore.test.ts +0 -162
  33. package/tests/apiCredentials.test.ts +0 -195
  34. package/tests/cli.test.ts +0 -798
  35. package/tests/encryptedStorage.test.ts +0 -173
  36. package/tests/encryption.test.ts +0 -169
  37. package/tests/lint.test.ts +0 -19
  38. package/tests/registry.test.ts +0 -103
  39. package/tests/servicesAgainstRecordings.test.ts +0 -230
  40. package/tests/typecheck.test.ts +0 -19
  41. package/tsconfig.json +0 -24
  42. package/vitest.config.ts +0 -13
@@ -1,19 +0,0 @@
1
- import { describe, it, expect } from 'vitest';
2
- import { execSync } from 'child_process';
3
- import { dirname, join } from 'path';
4
- import { fileURLToPath } from 'url';
5
-
6
- const __dirname = dirname(fileURLToPath(import.meta.url));
7
- const projectRoot = join(__dirname, '..');
8
-
9
- describe('TypeScript', () => {
10
- it('should pass type checking', () => {
11
- expect(() => {
12
- execSync('npm run typecheck', {
13
- cwd: projectRoot,
14
- encoding: 'utf-8',
15
- stdio: 'pipe',
16
- });
17
- }).not.toThrow();
18
- });
19
- });
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "lib": ["ES2022"],
7
- "outDir": "./dist",
8
- "declaration": true,
9
- "declarationMap": true,
10
- "sourceMap": true,
11
- "strict": true,
12
- "esModuleInterop": true,
13
- "skipLibCheck": true,
14
- "forceConsistentCasingInFileNames": true,
15
- "resolveJsonModule": true,
16
- "noUncheckedIndexedAccess": true,
17
- "noImplicitOverride": true,
18
- "noImplicitReturns": true,
19
- "noFallthroughCasesInSwitch": true,
20
- "exactOptionalPropertyTypes": true
21
- },
22
- "include": ["src/**/*", "tests/**/*", "scripts/**/*"],
23
- "exclude": ["node_modules", "dist"]
24
- }
package/vitest.config.ts DELETED
@@ -1,13 +0,0 @@
1
- import { defineConfig } from "vitest/config";
2
-
3
- export default defineConfig({
4
- test: {
5
- globals: false,
6
- environment: "node",
7
- include: ["tests/**/*.test.ts"],
8
- coverage: {
9
- provider: "v8",
10
- reporter: ["text", "json", "html"],
11
- },
12
- },
13
- });