UNPKG

@oeyoews/tiddlywiki-plugin-dev

Version:

[![](https://img.shields.io/badge/Join-TiddlyWiki_CN-blue)](https://github.com/tiddly-gittly)

120 lines (119 loc) 3.28 kB
{ "name": "@oeyoews/tiddlywiki-plugin-dev", "author": "oeyoews", "version": "0.0.40", "main": "./dist/js/index.js", "bin": { "tiddlywiki-plugin-dev": "./dist/js/main.js" }, "types": "./dist/index.d.ts", "license": "MIT", "keywords": [ "tiddlywiki", "tiddlywiki5", "tiddlywiki-plugin", "tiddlywiki-theme" ], "repository": { "type ": "git", "url": "https://github.com/tiddly-gittly/plugin-dev-cli" }, "homepage": "https://tiddly-gittly.github.io/Modern.TiddlyDev/", "bugs": { "url": "https://github.com/tiddly-gittly/plugin-dev-cli/issues" }, "scripts": { "prepare": "modern build && husky install", "prepublishOnly": "modern build --platform", "dev": "modern dev", "build": "modern build", "reset": "rimraf ./**/node_modules", "lint": "modern lint", "change": "modern change", "bump": "modern bump", "pre": "modern pre", "change-status": "modern change-status", "gen-release-note": "modern gen-release-note", "release": "modern release", "new": "modern new", "test": "modern test --passWithNoTests", "upgrade": "modern upgrade" }, "engines": { "node": ">=14.17.6" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{ts,tsx}": [ "node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet" ], "*.{js,jsx,mjs,mjsx,cjs,cjsx}": [ "node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet" ] }, "eslintIgnore": [ "node_modules/", "dist/" ], "dependencies": { "autoprefixer": "^10.4.14", "browserslist": "^4.20.3", "chalk": "^4.1.2", "chokidar": "^3.5.3", "clean-css": "^5.3.0", "cli-progress": "^3.11.2", "commander": "^9.4.1", "esbuild": "^0.14.38", "esbuild-plugin-browserslist": "^0.4.9", "esbuild-style-plugin": "^1.6.1", "get-port-please": "^2.6.1", "html-minifier-terser": "^7.1.0", "inquirer": "^8.1.3", "less": "^4.1.3", "lodash": "^4.17.21", "postcss-import": "^15.1.0", "sass": "^1.63.3", "sha256": "^0.2.0", "simple-git": "^3.15.1", "stylus": "^0.59.0", "tailwindcss": "^3.2.7", "tiddlywiki": "^5.3.3", "uglify-js": "^3.15.4", "ws": "^8.6.0" }, "devDependencies": { "@modern-js/module-tools": "1.21.6", "@modern-js/plugin-testing": "1.21.6", "@modern-js/tsconfig": "1.21.6", "@types/clean-css": "^4.2.6", "@types/cli-progress": "^3.11.0", "@types/html-minifier-terser": "^7.0.0", "@types/inquirer": "^8.2.5", "@types/lodash": "^4.14.191", "@types/node": "^18.11.9", "@types/sha256": "^0.2.0", "@types/uglify-js": "^3.17.1", "@types/ws": "^8.5.3", "husky": "^8", "lint-staged": "^11.2.6", "prettier": "^2.6.2", "rimraf": "^3.0.2", "ts-node": "^10.9.1", "tw5-typed": "latest", "typescript": "^4" }, "sideEffects": [ "*.css", "*.less", "*.sass", "*.scss" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }