mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-03-12 17:51:53 +08:00
82 lines
1.8 KiB
JSON
82 lines
1.8 KiB
JSON
{
|
|
"name": "@roadmapsh/dummy-editor",
|
|
"version": "0.0.5",
|
|
"description": "Dummy editor for the Roadmap Editor",
|
|
"private": false,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"node": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"browser": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"default": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"./style.css": "./dist/index.css"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"dist/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "tsup --watch",
|
|
"clean": "rm -rf dist && rm -rf node_modules",
|
|
"build": "tsup"
|
|
},
|
|
"keywords": [],
|
|
"author": "Arik Chakma <arikchangma@gmail.com>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"react": "^19.0.0",
|
|
"tailwind-merge": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.0.3",
|
|
"@types/react": "^19.0.8",
|
|
"postcss": "^8.5.1",
|
|
"postcss-replace": "^2.0.1",
|
|
"tailwindcss": "^4.0.3",
|
|
"tsup": "^8.3.6",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|