@fjell/docs-template
Version:
Shared documentation template for Fjell projects
91 lines (90 loc) • 2.44 kB
JSON
{
"name": "@fjell/docs-template",
"version": "1.0.35",
"description": "Shared documentation template for Fjell projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"copy-docs": "./dist/scripts/copy-docs.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/index.css": "./dist/index.css",
"./styles": {
"import": "./dist/styles/index.js",
"types": "./dist/styles/index.d.ts"
},
"./config": {
"import": "./dist/config/index.js",
"types": "./dist/config/index.d.ts"
},
"./tsconfig.docs.json": "./tsconfig.docs.json",
"./tsconfig.node.json": "./tsconfig.node.json"
},
"files": [
"dist",
"config",
"examples",
"tsconfig.docs.json",
"tsconfig.node.json"
],
"scripts": {
"lint": "eslint . --ext .ts --fix",
"clean": "rm -rf dist",
"build": "npm run clean && npm run lint && node build.js",
"dev": "npx tsc --watch",
"demo": "cd demo && npm install && npm run dev",
"demo:build": "cd demo && npm install && npm run build",
"test": "vitest --run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@fjell/eslint-config": "^1.1.21",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "3.2.4",
"esbuild": "^0.25.8",
"eslint": "^9.32.0",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"keywords": [
"fjell",
"documentation",
"template",
"react",
"typescript"
],
"author": "Fjell Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/getfjell/docs-template.git"
}
}