UNPKG

arredemo

Version:

Instantly build a static site for your package

76 lines (75 loc) 2.51 kB
{ "name": "arredemo", "version": "1.1.0", "description": "Instantly build a static site for your package", "type": "module", "bin": "bin/arre.mjs", "imports": { "#app/*": "./src/app/*", "#scripts/*": "./src/scripts/*" }, "exports": { "./cli": "./src/cli.mjs" }, "files": [ "bin", "src", ".babelrc.js" ], "scripts": { "site-clean": "rm -fr arredemo", "site-build": "npm run site-clean && node bin/arre.mjs build", "reset": "npm run site-clean && npm cache clean --force && rm -fr package-lock.json && rm -fr node_modules && npm i --ignore-scripts && npm run test-custom-reset && npm run test-noreact-reset ", "lint": "eslint ./src/**.mjs", "test-custom-reset": "cd test/arredemo-custom-test && npm run --silent x-reset", "test-noreact-reset": "cd test/arredemo-noreact-test && npm run --silent x-reset", "test-custom": "cd test/arredemo-custom-test && npm run x-run", "test-noreact": "cd test/arredemo-noreact-test && npm run x-run", "test": "npm run test-custom && npm run test-noreact", "prepare": "npm run lint && npm run site-build" }, "repository": { "type": "git", "url": "https://github.com/afialapis/arredemo.git" }, "author": "donato@afialapis.com", "license": "MIT", "bugs": { "url": "https://github.com/afialapis/arredemo/issues" }, "homepage": "https://github.com/afialapis/arredemo#readme", "dependencies": { "@babel/core": "^7.26.8", "@babel/eslint-parser": "^7.26.8", "@babel/preset-env": "^7.26.8", "@babel/preset-react": "^7.26.3", "@eslint/compat": "^1.2.6", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.20.0", "@rollup/plugin-alias": "^5.1.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-terser": "^0.4.4", "babel-plugin-module-resolver": "^5.0.2", "cross-spawn": "^7.0.6", "eslint": "^9.20.1", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.1.0", "globals": "^15.15.0", "markdown-to-jsx": "^7.7.3", "mustache": "^4.2.0", "node-fetch": "^3.3.2", "postcss": "^8.5.2", "prompts": "^2.4.2", "react": "^18.3.1", "react-dom": "^18.3.1", "rollup": "^4.34.6", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-postcss": "^4.0.2", "sass": "^1.84.0", "tinguir": "^0.0.5" } }