23 lines
541 B
JSON
23 lines
541 B
JSON
{
|
|
"name": "@tensamin/markdown",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
"./text": "./src/text.tsx",
|
|
"./input": "./src/input.tsx"
|
|
},
|
|
"scripts": {
|
|
"format": "bunx prettier --write .",
|
|
"lint": "eslint src",
|
|
"build": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/commands": "^6.10.2",
|
|
"@codemirror/lang-markdown": "^6.5.0",
|
|
"@codemirror/state": "^6.5.4",
|
|
"@codemirror/view": "^6.41.1",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0"
|
|
}
|
|
}
|