mdsel 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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "mdsel",
3
+ "version": "0.1.0",
4
+ "description": "Declarative Markdown semantic selection CLI for LLM agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "mdsel": "./dist/cli.mjs"
8
+ },
9
+ "exports": {
10
+ "./cli": {
11
+ "types": "./dist/cli.d.ts",
12
+ "import": "./dist/cli.mjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "test": "vitest",
22
+ "test:run": "vitest run",
23
+ "test:coverage": "vitest run --coverage",
24
+ "lint": "eslint .",
25
+ "lint:fix": "eslint . --fix",
26
+ "format": "prettier --write .",
27
+ "format:check": "prettier --check .",
28
+ "type-check": "tsc --noEmit",
29
+ "prepublishOnly": "npm run build && npm run test:run"
30
+ },
31
+ "keywords": [
32
+ "markdown",
33
+ "selector",
34
+ "cli",
35
+ "llm",
36
+ "ast",
37
+ "parser",
38
+ "semantic",
39
+ "content-selection",
40
+ "agent"
41
+ ],
42
+ "author": "dabstractor",
43
+ "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/dabstractor/mdsel.git"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/dabstractor/mdsel/issues"
50
+ },
51
+ "homepage": "https://github.com/dabstractor/mdsel#readme",
52
+ "engines": {
53
+ "node": ">=18.0.0"
54
+ },
55
+ "dependencies": {
56
+ "commander": "^12.1.0",
57
+ "mdast-util-gfm": "^3.1.0",
58
+ "mdast-util-to-markdown": "^2.1.2",
59
+ "mdast-util-to-string": "^4.0.0",
60
+ "remark-gfm": "^4.0.0",
61
+ "remark-parse": "^11.0.0",
62
+ "unified": "^11.0.5",
63
+ "unist-util-visit": "^5.0.0",
64
+ "unist-util-visit-parents": "^6.0.2"
65
+ },
66
+ "devDependencies": {
67
+ "@types/node": "^22.10.2",
68
+ "@vitest/coverage-v8": "^2.1.8",
69
+ "eslint": "^9.17.0",
70
+ "eslint-config-prettier": "^9.1.0",
71
+ "prettier": "^3.4.2",
72
+ "tsup": "^8.3.5",
73
+ "typescript": "^5.7.2",
74
+ "typescript-eslint": "^8.18.2",
75
+ "vitest": "^2.1.8"
76
+ }
77
+ }