-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.62 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.62 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
{
"name": "md2llm",
"version": "1.1.0",
"description": "A CLI tool for converting markdown to LLM rules",
"main": "bin/md2llm.js",
"type": "module",
"bin": {
"md2llm": "./bin/md2llm.js",
"md2llm.cmd": "./bin/md2llm.cmd"
},
"files": [
"bin/",
"src/",
"utils/",
"WINDOWS.md",
"README.md"
],
"scripts": {
"lint": "eslint .",
"test": "node --test",
"test:watch": "node --test --watch",
"test:coverage": "c8 node --test",
"test:windows": "node --test",
"prepublishOnly": "npm test",
"pack": "npm pack"
},
"keywords": [
"markdown",
"llm",
"cli",
"rules",
"documentation",
"context",
"godaddy"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"repository": "godaddy/md2llm.git",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/godaddy/md2llm/issues"
},
"homepage": "https://github.com/godaddy/md2llm#readme",
"dependencies": {
"commander": "^11.1.0",
"markdown-it": "^14.0.0"
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^8.57.1",
"eslint-config-godaddy": "^7.1.1",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-unicorn": "^55.0.0"
},
"eslintConfig": {
"extends": [
"godaddy"
],
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"plugins": [
"unicorn",
"jsdoc"
],
"rules": {
"unicorn/filename-case": "error",
"no-sync": "off",
"no-console": "off",
"no-continue": "off",
"no-process-env": "off"
}
},
"engines": {
"node": ">=20.0.0"
}
}