@omfalos/mokosh 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/LICENSE +21 -0
- package/README.md +192 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +139 -0
- package/dist/cli.js.map +1 -0
- package/dist/cli.mjs +139 -0
- package/dist/cli.mjs.map +1 -0
- package/dist/index.d.mts +1135 -0
- package/dist/index.d.ts +1135 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +26 -0
- package/dist/index.mjs.map +1 -0
- package/dist/mcp.d.mts +15 -0
- package/dist/mcp.d.ts +15 -0
- package/dist/mcp.js +28 -0
- package/dist/mcp.js.map +1 -0
- package/dist/mcp.mjs +28 -0
- package/dist/mcp.mjs.map +1 -0
- package/package.json +103 -0
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@omfalos/mokosh",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A high-performance, AST-powered dependency graph generator for frontend projects, optimized for AI context and smart test selection.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Omfalos/mokosh.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/Omfalos/mokosh/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/Omfalos/mokosh#readme",
|
|
23
|
+
"bin": {
|
|
24
|
+
"mokosh": "./dist/cli.js",
|
|
25
|
+
"mokosh-mcp": "./dist/mcp.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"build:prod": "NODE_ENV=production tsup",
|
|
34
|
+
"lint": "biome lint ./src",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"format": "biome format --write ./src",
|
|
37
|
+
"check": "biome check --write ./src",
|
|
38
|
+
"example": "tsx example/run-example.ts",
|
|
39
|
+
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -o CHANGELOG.md",
|
|
40
|
+
"prepublishOnly": "npm run build:prod",
|
|
41
|
+
"prepare": "husky"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"dependency-graph",
|
|
45
|
+
"ast",
|
|
46
|
+
"typescript",
|
|
47
|
+
"frontend",
|
|
48
|
+
"ai-ready",
|
|
49
|
+
"rag",
|
|
50
|
+
"test-impact-analysis",
|
|
51
|
+
"mermaid"
|
|
52
|
+
],
|
|
53
|
+
"author": "Omfalos",
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"type": "commonjs",
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=22"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
62
|
+
"lint-staged": {
|
|
63
|
+
"src/**/*.{ts,tsx,js,jsx,json}": [
|
|
64
|
+
"biome check --write"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@biomejs/biome": "^2.4.11",
|
|
69
|
+
"@commitlint/cli": "^21.2.1",
|
|
70
|
+
"@commitlint/config-conventional": "^21.2.0",
|
|
71
|
+
"@types/coffeescript": "^2.5.7",
|
|
72
|
+
"@types/js-yaml": "^4.0.9",
|
|
73
|
+
"@types/node": "^25.6.0",
|
|
74
|
+
"@vitest/coverage-v8": "^4.1.4",
|
|
75
|
+
"coffeescript": "^2.7.0",
|
|
76
|
+
"conventional-changelog": "^8.0.1",
|
|
77
|
+
"conventional-changelog-conventionalcommits": "^10.2.1",
|
|
78
|
+
"husky": "^9.1.7",
|
|
79
|
+
"lint-staged": "^16.4.0",
|
|
80
|
+
"livescript": "^1.6.0",
|
|
81
|
+
"ts-node": "^10.9.2",
|
|
82
|
+
"tsup": "^8.5.1",
|
|
83
|
+
"tsx": "^4.21.0",
|
|
84
|
+
"typescript": "^6.0.2",
|
|
85
|
+
"vitest": "^4.1.4"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@cucumber/gherkin": "^39.0.0",
|
|
89
|
+
"@cucumber/gherkin-streams": "^6.0.0",
|
|
90
|
+
"@cucumber/gherkin-utils": "^11.0.0",
|
|
91
|
+
"@cucumber/messages": "^32.2.0",
|
|
92
|
+
"@lezer/go": "^1.0.1",
|
|
93
|
+
"@lezer/python": "^1.1.18",
|
|
94
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
95
|
+
"@types/luaparse": "^0.2.13",
|
|
96
|
+
"js-yaml": "^4.1.1",
|
|
97
|
+
"luaparse": "^0.3.1",
|
|
98
|
+
"postcss": "^8.5.12",
|
|
99
|
+
"postcss-less": "^6.0.0",
|
|
100
|
+
"postcss-scss": "^4.0.9",
|
|
101
|
+
"stylus": "^0.64.0"
|
|
102
|
+
}
|
|
103
|
+
}
|