@spoolcms/nextjs
Version:
The beautiful headless CMS for Next.js developers
77 lines (76 loc) • 1.7 kB
JSON
{
"name": "@spoolcms/nextjs",
"version": "2.3.1",
"description": "The beautiful headless CMS for Next.js developers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": [
"./dist/dev-bootstrap.js"
],
"files": [
"dist/**/*",
"src/scripts/**/*",
"examples/**/*",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"bin": {
"spool-setup": "dist/cli.js",
"create-spool-route": "dist/cli.js",
"test-spool-webhooks": "src/scripts/test-webhook-setup.js",
"test-spool-live-updates": "src/scripts/test-live-updates.js"
},
"keywords": [
"nextjs",
"cms",
"headless",
"content-management",
"markdown",
"spool"
],
"author": "Spool Team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/spool.git",
"directory": "packages/nextjs"
},
"homepage": "https://spool.dev",
"peerDependencies": {
"next": ">=13.0.0",
"react": ">=18.0.0"
},
"dependencies": {
"convex": "^1.25.4",
"react-resize-detector": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}