1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "quill-monorepo",
- "version": "2.0.0-beta.0",
- "description": "Quill development environment",
- "private": true,
- "author": "Jason Chen <jhchen7@gmail.com>",
- "homepage": "https://quilljs.com",
- "config": {
- "ports": {
- "webpack": "9080",
- "gatsby": "9000"
- }
- },
- "workspaces": [
- "packages/*"
- ],
- "license": "BSD-3-Clause",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/quilljs/quill.git"
- },
- "bugs": {
- "url": "https://github.com/quilljs/quill/issues"
- },
- "scripts": {
- "build": "run-p build:*",
- "build:quill": "npm run build -w quill",
- "build:website": "npm run build -w website",
- "start": "run-p start:*",
- "start:quill": "npm start -w quill",
- "start:website": "USE_LOCAL_FILE=true npm start -w website",
- "lint": "npm run lint -w quill"
- },
- "keywords": [
- "quill",
- "editor",
- "rich text",
- "wysiwyg",
- "operational transformation",
- "ot",
- "framework"
- ],
- "engines": {
- "npm": ">=8.2.3"
- },
- "engineStrict": true,
- "devDependencies": {
- "npm-run-all": "^4.1.5"
- }
- }
|