UNPKG

lakelib

Version:

Lake is a rich text editor built for modern applications that require content creation like blog posts, user comments, and email composition.

95 lines 3.03 kB
{ "name": "lakelib", "version": "0.4.5", "description": "Lake is a rich text editor built for modern applications that require content creation like blog posts, user comments, and email composition.", "author": "Luo Longhao <luolonghao@gmail.com>", "license": "MIT", "homepage": "http://lakejs.org", "repository": { "type": "git", "url": "git+https://github.com/lakejs/lake.git" }, "bugs": { "url": "https://github.com/lakejs/lake/issues" }, "keywords": [ "rich text", "wysiwyg", "editor" ], "main": "./lib/lake.js", "types": "./lib/lake.d.ts", "files": [ "dist", "lib" ], "dependencies": { "@types/is-hotkey": "^0.1.10", "debounce": "^3.0.0", "eventemitter3": "^5.0.4", "fast-deep-equal": "^3.1.3", "is-hotkey": "^0.2.0", "lake-html": "^2.0.0", "photoswipe": "^5.4.4", "typesafe-i18n": "^5.26.2" }, "devDependencies": { "@antfu/eslint-config": "^7.2.0", "@rollup/plugin-alias": "^6.0.0", "@rollup/plugin-commonjs": "^29.0.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.3.0", "@types/chai": "^5.2.3", "@types/mocha": "^10.0.10", "@types/nise": "^1.4.5", "@types/sinon": "^21.0.0", "chai": "^6.2.2", "clean-css": "^5.3.3", "conventional-changelog-cli": "^5.0.0", "eslint": "^9.39.2", "execa": "^9.6.1", "express": "^5.2.1", "katex": "^0.16.27", "lake-codemirror": "^2.0.2", "mocha": "^11.7.5", "multer": "2.0.2", "nise": "^6.1.1", "npm-run-all2": "^8.0.4", "picocolors": "^1.1.1", "prompts": "^2.4.2", "puppeteer": "^24.36.0", "rimraf": "^6.1.2", "rollup": "^4.56.0", "rollup-plugin-dts": "^6.3.0", "rollup-plugin-ignore-import": "^1.3.2", "rollup-plugin-import-css": "^4.2.0", "rollup-plugin-svg-import": "^3.0.0", "semver": "^7.7.3", "simple-git-hooks": "^2.13.1", "sinon": "^21.0.1", "tslib": "^2.8.1", "typescript": "^5.9.3" }, "simple-git-hooks": { "pre-commit": "pnpm lint:fix", "commit-msg": "node ./scripts/verify-commit.mjs" }, "scripts": { "dev": "npm-run-all --parallel --print-label dev:express dev:rollup", "dev:express": "node ./scripts/start-server.mjs 8080", "dev:rollup": "rollup --watch --config rollup.config.mjs --example --test", "dev:lib": "rollup --watch --config rollup.config.mjs --es", "build": "rimraf ./dist ./lib && rollup --config rollup.config.mjs --iife --es", "i18n": "typesafe-i18n --no-watch", "install:chrome": "npx puppeteer browsers install chrome", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "node ./scripts/run-tests.mjs", "test:express": "node ./scripts/start-server.mjs 8081", "test:rollup": "rollup --config rollup.config.mjs --test", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "release": "node ./scripts/release.mjs" } }