- Restructure demo directory from test-sites/ to demos/ with flattened layout - Add auto-enhancement on server startup for all sites with auto_enhance: true - Fix inconsistent content ID generation that prevented dan-eden-portfolio content persistence - Update server configuration to enhance from source to separate output directories - Remove manual enhancement from justfile in favor of automatic server enhancement - Clean up legacy test files and unused restore command - Update build system to use CDN endpoint instead of file copying
36 lines
741 B
JSON
36 lines
741 B
JSON
{
|
|
"name": "@insertr/lib",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "The Tailwind of CMS - Client-side library for content injection and editing",
|
|
"main": "dist/insertr.js",
|
|
"module": "src/index.js",
|
|
"files": [
|
|
"dist/",
|
|
"src/"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build:only": "rollup -c",
|
|
"watch": "rollup -c -w",
|
|
"dev": "rollup -c -w"
|
|
},
|
|
"keywords": [
|
|
"cms",
|
|
"content",
|
|
"headless",
|
|
"inline-editing"
|
|
],
|
|
"author": "Insertr Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
"@rollup/plugin-terser": "^0.4.0",
|
|
"rollup": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"marked": "^16.2.1",
|
|
"turndown": "^7.2.1"
|
|
}
|
|
}
|