@parseme/cli 0.0.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/LICENSE +21 -0
- package/README.md +453 -0
- package/dist/analyzers/ast-analyzer.d.ts +12 -0
- package/dist/analyzers/ast-analyzer.js +176 -0
- package/dist/analyzers/framework-detector.d.ts +12 -0
- package/dist/analyzers/framework-detector.js +180 -0
- package/dist/analyzers/git-analyzer.d.ts +13 -0
- package/dist/analyzers/git-analyzer.js +92 -0
- package/dist/analyzers/pattern-detector.d.ts +58 -0
- package/dist/analyzers/pattern-detector.js +174 -0
- package/dist/analyzers/project-analyzer.d.ts +14 -0
- package/dist/analyzers/project-analyzer.js +205 -0
- package/dist/builders/context-builder.d.ts +35 -0
- package/dist/builders/context-builder.js +332 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +145 -0
- package/dist/config.d.ts +44 -0
- package/dist/config.js +203 -0
- package/dist/generator.d.ts +15 -0
- package/dist/generator.js +88 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +3 -0
- package/dist/prompt.d.ts +8 -0
- package/dist/prompt.js +42 -0
- package/dist/types.d.ts +82 -0
- package/dist/types.js +2 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@parseme/cli",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Adds a PARSEME.md file—a README.md for AI agents—to your project, providing context and structure for automated tools.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"parseme": "dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"npm": ">=10.8.2",
|
|
18
|
+
"node": ">=20.19.5"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc -p tsconfig.json",
|
|
22
|
+
"dev": "tsc -p tsconfig.json --watch",
|
|
23
|
+
"format": "prettier . --ignore-unknown --write",
|
|
24
|
+
"format:check": "prettier . --ignore-unknown --check",
|
|
25
|
+
"lint": "eslint --config ./eslint.config.js --fix",
|
|
26
|
+
"lint:check": "eslint --config ./eslint.config.js --no-fix --max-warnings 0",
|
|
27
|
+
"test": "node --test --experimental-test-coverage tests/**/*.test.ts",
|
|
28
|
+
"test:unit": "node --test tests/unit/**/*.test.ts",
|
|
29
|
+
"test:integration": "node --test tests/integration/**/*.test.ts",
|
|
30
|
+
"test:watch": "node --test --watch tests/**/*.test.ts",
|
|
31
|
+
"test:coverage": "node --test --experimental-test-coverage tests/**/*.test.ts",
|
|
32
|
+
"prepare": "npm run build",
|
|
33
|
+
"clean": "rm -rf dist"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"ai",
|
|
37
|
+
"context",
|
|
38
|
+
"ast",
|
|
39
|
+
"parser",
|
|
40
|
+
"typescript",
|
|
41
|
+
"javascript",
|
|
42
|
+
"cli",
|
|
43
|
+
"agent"
|
|
44
|
+
],
|
|
45
|
+
"author": "citrus551",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/citrus551/parseme-modules.git"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/citrus551/parseme-modules/issues"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/citrus551/parseme-modules#readme",
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@babel/core": "^7.28.4",
|
|
57
|
+
"@babel/parser": "^7.28.4",
|
|
58
|
+
"@babel/traverse": "^7.28.4",
|
|
59
|
+
"@babel/types": "^7.28.4",
|
|
60
|
+
"commander": "^14.0.1",
|
|
61
|
+
"glob": "^11.0.3",
|
|
62
|
+
"ignore": "^7.0.5"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@babel/types": "^7.28.4",
|
|
66
|
+
"@tsconfig/node-lts": "^22.0.2",
|
|
67
|
+
"@types/babel__traverse": "^7.28.0",
|
|
68
|
+
"@types/node": "^24.5.0",
|
|
69
|
+
"eslint": "^9.36.0",
|
|
70
|
+
"eslint-config-prettier": "^10.1.8",
|
|
71
|
+
"eslint-plugin-import": "^2.32.0",
|
|
72
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
73
|
+
"globals": "^16.4.0",
|
|
74
|
+
"prettier": "^3.6.2",
|
|
75
|
+
"typescript": "^5.9.2",
|
|
76
|
+
"typescript-eslint": "^8.44.1"
|
|
77
|
+
},
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
}
|
|
81
|
+
}
|