copy-llms-txt
Version:
A lightweight JavaScript library that lets you copy the content of a webpage as clean markdown with a simple keyboard shortcut.
48 lines (47 loc) • 1.07 kB
JSON
{
"name": "copy-llms-txt",
"private": false,
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"markdown",
"copy",
"turndown",
"clipboard",
"llmstxt"
],
"main": "./dist/copy-llms-txt.cjs.js",
"module": "./dist/copy-llms-txt.es.js",
"browser": "./dist/copy-llms-txt.umd.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/copy-llms-txt.es.js",
"require": "./dist/copy-llms-txt.cjs.js",
"default": "./dist/copy-llms-txt.es.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/turndown": "^5.0.5",
"terser": "^5.39.0",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3"
},
"dependencies": {
"turndown": "^7.2.0"
}
}