-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "remark-code-region",
"version": "0.2.0",
"description": "Every code block in your docs is extracted from a passing test. Pull tested code from your test suite into Docusaurus, Astro, or any remark-powered docs.",
"type": "module",
"main": "./index.cjs",
"module": "./index.mjs",
"exports": {
".": {
"types": "./index.d.mts",
"require": "./index.cjs",
"import": "./index.mjs"
}
},
"files": [
"index.mjs",
"index.cjs",
"index.d.mts",
"lib/"
],
"scripts": {
"build": "esbuild index.mjs --bundle --platform=node --format=cjs --outfile=index.cjs --packages=external --footer:js=\";(function(){var m=module.exports;var fn=m.default;Object.assign(fn,m);delete fn.default;fn.default=fn;module.exports=fn;})()\"",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "npm run build && npm test",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"remark",
"remark-plugin",
"unified",
"markdown",
"docusaurus",
"astro",
"code-blocks",
"documentation",
"tested-code",
"code-import",
"code-region",
"snippets"
],
"author": "patricker",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patricker/remark-code-region"
},
"homepage": "https://github.com/patricker/remark-code-region#readme",
"bugs": {
"url": "https://github.com/patricker/remark-code-region/issues"
},
"peerDependencies": {
"unified": ">=11.0.0"
},
"dependencies": {
"diff": "^8.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"esbuild": "^0.27.4",
"remark": "^15.0.0",
"remark-parse": "^11.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}