-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.58 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
{
"name": "@create-markdown/mdx",
"version": "2.0.3",
"description": "Convert markdown blocks to MDX with component mappings",
"author": "Val Alexander <val@viewdue.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BunsDev/create-markdown",
"directory": "packages/mdx"
},
"homepage": "https://github.com/BunsDev/create-markdown/tree/main/packages/mdx",
"bugs": {
"url": "https://github.com/BunsDev/create-markdown/issues"
},
"keywords": [
"markdown",
"mdx",
"converter",
"blocks",
"typescript",
"react"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:js && pnpm run build:types",
"build:js": "tsup --config tsup.config.ts",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"dev": "tsup --config tsup.config.ts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@create-markdown/core": "workspace:^",
"@types/node": "^25.5.2",
"typescript": "^6.0.2",
"vite": "7.1.11",
"vitest": "^4.1.2"
},
"peerDependencies": {
"@create-markdown/core": ">=2.0.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}