prelude-context 1.5.0 → 1.7.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/README.md +63 -4
- package/dist/bin/prelude.js +2 -0
- package/dist/bin/prelude.js.map +1 -1
- package/dist/src/commands/export.d.ts.map +1 -1
- package/dist/src/commands/export.js +5 -3
- package/dist/src/commands/export.js.map +1 -1
- package/dist/src/commands/init.d.ts.map +1 -1
- package/dist/src/commands/init.js +151 -0
- package/dist/src/commands/init.js.map +1 -1
- package/dist/src/commands/validate.d.ts +3 -0
- package/dist/src/commands/validate.d.ts.map +1 -0
- package/dist/src/commands/validate.js +203 -0
- package/dist/src/commands/validate.js.map +1 -0
- package/dist/src/constants.d.ts +1 -1
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +11 -1
- package/dist/src/constants.js.map +1 -1
- package/dist/src/core/claude-md-parser.d.ts +33 -0
- package/dist/src/core/claude-md-parser.d.ts.map +1 -0
- package/dist/src/core/claude-md-parser.js +410 -0
- package/dist/src/core/claude-md-parser.js.map +1 -0
- package/dist/src/core/exporter.d.ts +2 -1
- package/dist/src/core/exporter.d.ts.map +1 -1
- package/dist/src/core/exporter.js +159 -1
- package/dist/src/core/exporter.js.map +1 -1
- package/dist/src/core/infer.d.ts.map +1 -1
- package/dist/src/core/infer.js +936 -52
- package/dist/src/core/infer.js.map +1 -1
- package/dist/src/core/source-scanner.d.ts.map +1 -1
- package/dist/src/core/source-scanner.js +152 -8
- package/dist/src/core/source-scanner.js.map +1 -1
- package/dist/src/schema/stack.d.ts +3 -3
- package/dist/src/schema/stack.js +1 -1
- package/dist/src/schema/stack.js.map +1 -1
- package/dist/src/utils/fs.d.ts.map +1 -1
- package/dist/src/utils/fs.js +4 -1
- package/dist/src/utils/fs.js.map +1 -1
- package/package.json +11 -10
- package/schemas/stack.schema.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prelude-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "The open standard for expressing and maintaining machine-readable context about a codebase",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,6 +13,15 @@
|
|
|
13
13
|
"SPEC.md",
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "tsx watch bin/prelude.ts",
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"prepublishOnly": "pnpm build",
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"test:watch": "vitest --watch",
|
|
22
|
+
"lint": "eslint . --ext .ts",
|
|
23
|
+
"format": "prettier --write \"**/*.{ts,json,md}\""
|
|
24
|
+
},
|
|
16
25
|
"keywords": [
|
|
17
26
|
"cli",
|
|
18
27
|
"context",
|
|
@@ -52,13 +61,5 @@
|
|
|
52
61
|
},
|
|
53
62
|
"engines": {
|
|
54
63
|
"node": ">=18.0.0"
|
|
55
|
-
},
|
|
56
|
-
"scripts": {
|
|
57
|
-
"dev": "tsx watch bin/prelude.ts",
|
|
58
|
-
"build": "tsc",
|
|
59
|
-
"test": "vitest",
|
|
60
|
-
"test:watch": "vitest --watch",
|
|
61
|
-
"lint": "eslint . --ext .ts",
|
|
62
|
-
"format": "prettier --write \"**/*.{ts,json,md}\""
|
|
63
64
|
}
|
|
64
|
-
}
|
|
65
|
+
}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"packageManager": {
|
|
28
28
|
"type": "string",
|
|
29
|
-
"enum": ["npm", "pnpm", "yarn", "bun", "pip", "poetry", "cargo", "go"],
|
|
29
|
+
"enum": ["npm", "pnpm", "yarn", "bun", "pip", "poetry", "uv", "pipenv", "cargo", "go"],
|
|
30
30
|
"description": "Package manager used"
|
|
31
31
|
},
|
|
32
32
|
"framework": {
|