@codyswann/lisa 1.21.1 → 1.21.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.
- package/expo/copy-overwrite/knip.json +1 -0
- package/expo/package-lisa/package.lisa.json +2 -0
- package/nestjs/copy-overwrite/.claude/skills/typeorm-patterns/references/configuration-patterns.md +1 -1
- package/nestjs/copy-overwrite/knip.json +63 -0
- package/nestjs/package-lisa/package.lisa.json +4 -5
- package/package.json +1 -1
- package/typescript/deletions.json +5 -0
- package/typescript/package-lisa/package.lisa.json +3 -0
|
@@ -122,10 +122,12 @@
|
|
|
122
122
|
"serve": "^14.2.0"
|
|
123
123
|
},
|
|
124
124
|
"resolutions": {
|
|
125
|
+
"@isaacs/brace-expansion": "^5.0.1",
|
|
125
126
|
"eslint-plugin-react-hooks": "^7.0.0",
|
|
126
127
|
"tar": "^7.5.7"
|
|
127
128
|
},
|
|
128
129
|
"overrides": {
|
|
130
|
+
"@isaacs/brace-expansion": "^5.0.1",
|
|
129
131
|
"eslint-plugin-react-hooks": "^7.0.0",
|
|
130
132
|
"zod-validation-error": "^4.0.0",
|
|
131
133
|
"tar": "^7.5.7"
|
package/nestjs/copy-overwrite/.claude/skills/typeorm-patterns/references/configuration-patterns.md
CHANGED
|
@@ -378,7 +378,7 @@ import { createLocalConfig } from "./src/database/database.config";
|
|
|
378
378
|
* TypeORM CLI DataSource for migrations.
|
|
379
379
|
*
|
|
380
380
|
* @remarks
|
|
381
|
-
* This configuration is used by typeorm
|
|
381
|
+
* This configuration is used by tsx with typeorm CLI for:
|
|
382
382
|
* - migration:generate
|
|
383
383
|
* - migration:run
|
|
384
384
|
* - migration:revert
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://unpkg.com/knip@5/schema.json",
|
|
3
|
+
"entry": ["src/**/*.ts", "lambdas/**/*.ts", "lib/**/*.ts", "scripts/**/*.ts"],
|
|
4
|
+
"project": ["src/**/*.ts", "lambdas/**/*.ts", "lib/**/*.ts"],
|
|
5
|
+
"ignore": [
|
|
6
|
+
"**/*.test.ts",
|
|
7
|
+
"**/*.spec.ts",
|
|
8
|
+
"**/__tests__/**",
|
|
9
|
+
"**/__mocks__/**",
|
|
10
|
+
"**/tests/**",
|
|
11
|
+
"**/test/**",
|
|
12
|
+
"**/dist/**",
|
|
13
|
+
"**/build/**",
|
|
14
|
+
"**/coverage/**",
|
|
15
|
+
"**/node_modules/**"
|
|
16
|
+
],
|
|
17
|
+
"ignoreDependencies": [
|
|
18
|
+
"langsmith",
|
|
19
|
+
"graphql",
|
|
20
|
+
"@apollo/server",
|
|
21
|
+
"@as-integrations/express5",
|
|
22
|
+
"@aws-sdk/client-apigatewaymanagementapi",
|
|
23
|
+
"@aws-sdk/client-appconfig",
|
|
24
|
+
"@aws-sdk/client-cloudwatch",
|
|
25
|
+
"@aws-sdk/client-dynamodb",
|
|
26
|
+
"@aws-sdk/client-lambda",
|
|
27
|
+
"@aws-sdk/lib-dynamodb",
|
|
28
|
+
"@aws-sdk/rds-signer",
|
|
29
|
+
"@graphql-tools/utils",
|
|
30
|
+
"@nestjs/apollo",
|
|
31
|
+
"@nestjs/axios",
|
|
32
|
+
"@nestjs/common",
|
|
33
|
+
"@nestjs/config",
|
|
34
|
+
"@nestjs/core",
|
|
35
|
+
"@nestjs/graphql",
|
|
36
|
+
"@nestjs/platform-express",
|
|
37
|
+
"@nestjs/terminus",
|
|
38
|
+
"@nestjs/typeorm",
|
|
39
|
+
"@sentry/profiling-node",
|
|
40
|
+
"@vendia/serverless-express",
|
|
41
|
+
"aws-jwt-verify",
|
|
42
|
+
"aws-xray-sdk-core",
|
|
43
|
+
"cache-manager",
|
|
44
|
+
"class-transformer",
|
|
45
|
+
"class-validator",
|
|
46
|
+
"csv-parse",
|
|
47
|
+
"dataloader",
|
|
48
|
+
"graphql-query-complexity",
|
|
49
|
+
"graphql-request",
|
|
50
|
+
"graphql-scalars",
|
|
51
|
+
"graphql-subscriptions",
|
|
52
|
+
"graphql-ws",
|
|
53
|
+
"lodash",
|
|
54
|
+
"reflect-metadata",
|
|
55
|
+
"rxjs",
|
|
56
|
+
"typeorm-naming-strategies"
|
|
57
|
+
],
|
|
58
|
+
"ignoreBinaries": ["expo", "playwright", "audit", "docker", "eval"],
|
|
59
|
+
"ignoreExportsUsedInFile": true,
|
|
60
|
+
"rules": {
|
|
61
|
+
"devDependencies": "off"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"defaults": {
|
|
3
3
|
"scripts": {
|
|
4
|
-
"migration:generate": "typeorm
|
|
5
|
-
"migration:run": "typeorm
|
|
6
|
-
"migration:revert": "typeorm
|
|
4
|
+
"migration:generate": "tsx ./node_modules/typeorm/cli.js migration:generate -d typeorm.config.ts src/database/migrations/$npm_config_name",
|
|
5
|
+
"migration:run": "tsx ./node_modules/typeorm/cli.js migration:run -d typeorm.config.ts",
|
|
6
|
+
"migration:revert": "tsx ./node_modules/typeorm/cli.js migration:revert -d typeorm.config.ts"
|
|
7
7
|
}
|
|
8
8
|
},
|
|
9
9
|
"force": {
|
|
@@ -72,8 +72,7 @@
|
|
|
72
72
|
"@types/express": "^5.0.6",
|
|
73
73
|
"serverless": "^4.30.0",
|
|
74
74
|
"serverless-esbuild": "^1.57.0",
|
|
75
|
-
"serverless-offline": "^14.4.0"
|
|
76
|
-
"ts-node": "^10.9.2"
|
|
75
|
+
"serverless-offline": "^14.4.0"
|
|
77
76
|
}
|
|
78
77
|
}
|
|
79
78
|
}
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@isaacs/brace-expansion": "^5.0.1"
|
|
89
89
|
},
|
|
90
90
|
"name": "@codyswann/lisa",
|
|
91
|
-
"version": "1.21.
|
|
91
|
+
"version": "1.21.2",
|
|
92
92
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
93
93
|
"main": "dist/index.js",
|
|
94
94
|
"bin": {
|