mobbdev 1.0.113 → 1.0.114
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.mjs +677 -425
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mobbdev",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.114",
|
|
4
4
|
"description": "Automated secure code remediation tool",
|
|
5
5
|
"repository": "git+https://github.com/mobb-dev/bugsy.git",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"test:mcp": "pnpm run build && vitest run __tests__/mcp/",
|
|
15
15
|
"test:mcp:watch": "vitest watch __tests__/mcp/",
|
|
16
16
|
"test:mcp:verbose": "pnpm run build && NODE_ENV=test VERBOSE=true vitest run __tests__/mcp/",
|
|
17
|
-
"test:mcp:integration": "pnpm run build && GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh)
|
|
17
|
+
"test:mcp:integration": "pnpm run build && GIT_PROXY_HOST=http://tinyproxy:8888 API_URL=http://app-api:8080/v1/graphql TOKEN=$(../../scripts/login_auth0.sh) vitest run __tests__/integration.test.ts -t 'mcp|MCP'",
|
|
18
|
+
"test:mcp:all": "pnpm run test:mcp && pnpm run test:mcp:integration && cd ./__e2e__ && npm i && npm run test:mcp",
|
|
18
19
|
"test:unit": "GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) vitest run --exclude='**/__tests__/integration.test.ts' --exclude='**/__tests__/mcp/**'",
|
|
19
20
|
"test:integration": "GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) vitest run __tests__/integration.test.ts",
|
|
20
21
|
"test:integration:watch": "GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) vitest watch run __tests__/integration.test.ts",
|
|
@@ -27,9 +28,9 @@
|
|
|
27
28
|
"test:coverage": "GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) vitest run --coverage",
|
|
28
29
|
"test:watch": "TOKEN=$(../../scripts/login_auth0.sh) vitest",
|
|
29
30
|
"test:integration:proxy": "GIT_PROXY_HOST=http://tinyproxy:8888 HTTP_PROXY=http://localhost:8888 API_URL=http://app-api:8080/v1/graphql TOKEN=$(../../scripts/login_auth0.sh) vitest run integration.test.ts",
|
|
30
|
-
"lint": "eslint --cache --max-warnings 0 --ignore-path .eslintignore --ext .ts,.tsx,.jsx .",
|
|
31
|
-
"lint:fix": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx .",
|
|
32
|
-
"lint:fix:files": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx",
|
|
31
|
+
"lint": "eslint --cache --max-warnings 0 --ignore-path .eslintignore --ext .ts,.tsx,.jsx,.graphql .",
|
|
32
|
+
"lint:fix": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx,.graphql . && prettier --write \"src/**/*.graphql\"",
|
|
33
|
+
"lint:fix:files": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx,.graphql",
|
|
33
34
|
"prepack": "dotenv-vault pull production .env && pnpm build",
|
|
34
35
|
"dev:mcp": "pnpm run build && node dist/index.mjs mcp",
|
|
35
36
|
"debug:mcp": "pnpm run build && node dist/index.mjs mcp --debug",
|
|
@@ -94,12 +95,14 @@
|
|
|
94
95
|
"@graphql-codegen/typescript": "4.1.6",
|
|
95
96
|
"@graphql-codegen/typescript-graphql-request": "6.3.0",
|
|
96
97
|
"@graphql-codegen/typescript-operations": "4.6.1",
|
|
98
|
+
"@graphql-eslint/eslint-plugin": "4.4.0",
|
|
97
99
|
"@octokit/types": "13.10.0",
|
|
98
100
|
"@types/adm-zip": "0.5.7",
|
|
99
101
|
"@types/chalk-animation": "1.6.3",
|
|
100
102
|
"@types/configstore": "6.0.2",
|
|
101
103
|
"@types/debug": "4.1.12",
|
|
102
104
|
"@types/inquirer": "9.0.8",
|
|
105
|
+
"@types/libsodium-wrappers": "0.7.14",
|
|
103
106
|
"@types/sax": "1.2.7",
|
|
104
107
|
"@types/semver": "7.7.0",
|
|
105
108
|
"@types/tar": "6.1.13",
|
|
@@ -113,6 +116,7 @@
|
|
|
113
116
|
"@vitest/coverage-istanbul": "3.2.3",
|
|
114
117
|
"@vitest/ui": "3.2.3",
|
|
115
118
|
"eslint": "8.57.0",
|
|
119
|
+
"eslint-plugin-graphql": "4.0.0",
|
|
116
120
|
"eslint-plugin-import": "2.31.0",
|
|
117
121
|
"eslint-plugin-prettier": "5.4.1",
|
|
118
122
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
@@ -121,8 +125,7 @@
|
|
|
121
125
|
"prettier": "3.5.3",
|
|
122
126
|
"tsup": "8.5.0",
|
|
123
127
|
"typescript": "4.9.5",
|
|
124
|
-
"vitest": "3.2.3"
|
|
125
|
-
"@types/libsodium-wrappers": "0.7.14"
|
|
128
|
+
"vitest": "3.2.3"
|
|
126
129
|
},
|
|
127
130
|
"engines": {
|
|
128
131
|
"node": ">=18.20.0"
|