UNPKG

minista-shared-head

Version:
69 lines (68 loc) 1.55 kB
{ "name": "minista-shared-head", "version": "4.0.0-alpha.0", "type": "module", "engines": { "node": "^18.0.0 || >=20.0.0" }, "types": "dist/types/@types/node.d.ts", "main": "dist/node/index.js", "exports": { ".": { "types": "./dist/types/@types/node.d.ts", "default": "./dist/node/index.js" }, "./client": { "types": "./dist/types/@types/client.d.ts", "default": "./dist/client/index.js" }, "./shared": { "types": "./dist/types/@types/shared.d.ts", "default": "./dist/shared/index.js" } }, "files": [ "dist" ], "license": "MIT", "homepage": "https://minista.qranoko.jp", "repository": { "type": "git", "url": "https://github.com/qrac/minista", "directory": "packages/shared-head" }, "bugs": { "url": "https://github.com/qrac/minista/issues" }, "keywords": [ "static-site-generator", "ssg", "coding", "react", "jsx", "tsx", "typescript", "esbuild", "vite", "japanese", "minista" ], "author": { "name": "Qrac", "url": "https://qrac.jp" }, "organization": { "name": "QRANOKO", "url": "https://qranoko.jp" }, "scripts": { "build": "npm run clean && npm run build-src && npm run build-type", "build-src": "esbuild ./src/client/*.ts ./src/node/*.{ts,tsx} ./src/shared/*.ts --outbase=src --outdir=dist", "build-type": "tsc", "clean": "rimraf ./dist", "prepublishOnly": "npm run build" }, "peerDependencies": { "react": ">=18.0.0" } }