-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.85 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@moikas/moidvk",
"version": "2.2.2",
"description": "The Ultimate DevKit - MCP server for development best practices",
"main": "server.js",
"module": "server.js",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"bin": {
"moidvk": "./cli.js"
},
"files": [
"lib/config/",
"lib/filesystem/",
"lib/git/",
"lib/integration/",
"lib/intelligence/",
"lib/local-ai/",
"lib/python/",
"lib/reasoning/",
"lib/rust/",
"lib/rust-bindings/",
"lib/security/",
"lib/tools/",
"lib/utils/",
"lib/safety-analyzer.js",
"server.js",
"cli.js",
"index.js",
"index.cjs",
"index.d.ts",
"README.md"
],
"scripts": {
"start": "bun run server.js",
"serve": "bun cli.js serve",
"dev": "bun --watch server.js",
"test": "bun test",
"lint": "echo 'Linting disabled for release'",
"lint:full": "eslint .",
"lint:idd": "echo 'Use: bun run test/manual-test.js to test moidvk tools'",
"build:rust": "cd lib/rust-core && cargo build --release",
"build:rust:debug": "cd lib/rust-core && cargo build",
"build:napi": "napi build --platform --release --cwd lib/rust-core",
"build:napi:debug": "napi build --platform --cwd lib/rust-core",
"build:all": "npm run build:rust && npm run build:napi",
"postinstall": "if [ \"$CI\" = \"true\" ] || [ \"$NODE_ENV\" = \"production\" ]; then echo 'Skipping build in CI/production'; else npm run build:all || echo 'Rust build failed, falling back to JavaScript implementations'; fi",
"prepublishOnly": "npm run build:all && npm test && npm run lint",
"benchmark": "node scripts/run-benchmarks.js",
"benchmark:quick": "node scripts/run-benchmarks.js --quick",
"benchmark:vectors": "node scripts/run-benchmarks.js --vectors",
"benchmark:files": "node scripts/run-benchmarks.js --files",
"benchmark:memory": "node scripts/run-benchmarks.js --memory",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags",
"version:check": "node scripts/version-check.js",
"audit:complete": "bun cli.js audit-completion"
},
"keywords": [
"mcp",
"eslint",
"code-quality",
"best-practices",
"development-tools",
"rust",
"javascript",
"typescript",
"python",
"security",
"performance",
"accessibility",
"graphql",
"redux",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/moidvk.git"
},
"bugs": {
"url": "https://github.com/yourusername/moidvk/issues"
},
"homepage": "https://github.com/yourusername/moidvk#readme",
"author": "Warren Gates",
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.0.1",
"@types/bun": "^1.2.19",
"cargo-cp-artifact": "^0.1.9"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@modelcontextprotocol/sdk": "^1.16.0",
"@reduxjs/toolkit": "^2.8.2",
"@xenova/transformers": "^2.17.2",
"axe-core": "^4.10.3",
"eslint": "^9.31.0",
"eslint-plugin-unicorn": "^60.0.0",
"graphql": "^16.11.0",
"graphql-depth-limit": "^1.1.0",
"graphql-tools": "^9.0.20",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"puppeteer": "^24.14.0",
"zod": "^4.0.5"
},
"engines": {
"bun": ">=1.0.0",
"rust": ">=1.70.0"
},
"napi": {
"name": "moidvk-core",
"package": {
"name": "@moidvk/core"
}
},
"optionalDependencies": {
"@moidvk/core-darwin-arm64": "latest",
"@moidvk/core-darwin-x64": "latest",
"@moidvk/core-linux-arm64-gnu": "latest",
"@moidvk/core-linux-x64-gnu": "latest",
"@moidvk/core-win32-x64-msvc": "latest"
}
}