-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.12 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "inject-markdown",
"version": "4.0.0",
"description": "Command line tool to inject files into markdown files.",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"bin": {
"inject-markdown": "./bin.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/inject-markdown"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"build:readme": "./scripts/update_readme.sh",
"coverage": "vitest run --coverage",
"clean": "rm -rf coverage dist",
"lint": "pnpm eslint && pnpm prettier",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"spell": "cspell --no-progress .",
"sample:clean": "./bin.mjs --clean \"sample-clean/**/*.md\"",
"sample:hydrate": "./bin.mjs \"*.md\" --cwd=sample-clean --output-dir=sample-hydrated",
"test": "vitest run --pool=forks",
"test:bin": "./bin.mjs \"**\" --cwd=fixtures --output-dir=fixtures-output --no-stop-on-error --write-on-error || echo done.",
"test:watch": "vitest",
"prepareOnly": "pnpm build"
},
"keywords": [
"markdown",
"inject",
"import"
],
"author": {
"name": "Street Side Software",
"url": "https://github.com/streetsidesoftware"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/inject-markdown/issues"
},
"homepage": "https://github.com/streetsidesoftware/inject-markdown#readme",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tsconfig/node20": "^20.1.9",
"@types/mdast": "^4.0.4",
"@types/node": "^20.19.39",
"@vitest/coverage-istanbul": "^3.2.4",
"cspell": "^9.8.0",
"eslint": "^9.39.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.3.2",
"vitest": "^3.2.4"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"globby": "^16.2.0",
"node-fetch": "^3.3.2",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-is": "^6.0.1",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.1.0",
"vfile": "^6.0.3",
"vfile-reporter": "^8.1.1"
},
"pnpm": {
"overrides": {},
"patchedDependencies": {},
"onlyBuiltDependencies": [
"esbuild"
]
},
"exports": {
".": {
"import": "./dist/app.mjs"
},
"./app": {
"import": "./dist/app.mjs"
},
"./bin": {
"import": "./bin.mjs"
},
"./bin.mjs": {
"import": "./bin.mjs"
}
},
"files": [
"bin.mjs",
"dist/**/*.mjs",
"dist/**/*.js",
"!**/*.test.*",
"!**/*.map"
],
"engines": {
"node": ">=20"
}
}