UNPKG

collaborative-ace

Version:

Binding for collaborative editing support in Ace Editor. Connects JSON CRDT str node to Ace Editor.

131 lines (130 loc) 3.34 kB
{ "name": "collaborative-ace", "version": "1.4.0", "description": "Binding for collaborative editing support in Ace Editor. Connects JSON CRDT str node to Ace Editor.", "author": { "name": "streamich", "url": "https://github.com/streamich" }, "homepage": "https://github.com/streamich/collaborative-ace", "repository": "streamich/collaborative-ace", "main": "lib/index.js", "types": "lib/index.d.ts", "typings": "lib/index.d.ts", "files": [ "LICENSE", "lib/" ], "scripts": { "format": "biome format ./src", "format:fix": "biome format --write ./src", "lint": "biome lint ./src", "lint:fix": "biome lint --write ./src", "clean": "rimraf dist lib es6 es2019 es2020 esm typedocs storybook-static", "build": "tsc --project tsconfig.build.json", "jest": "jest", "test": "yarn jest --maxWorkers 7", "test:all": "yarn lint && yarn test", "test:ci": "yarn jest --maxWorkers 3 --no-cache", "storybook": "storybook dev -p 6006", "storybook:build": "storybook build", "storybook:publish": "npx gh-pages -d storybook-static" }, "keywords": [ "ace", "ace-editor", "ace-editor-binding", "collaborative", "multiplayer", "binding", "collaborative-editor", "editor", "input", "textarea", "contenteditable", "json-crdt", "json", "crdt" ], "dependencies": { "collaborative-editor": "^2.5.0", "json-joy": "^17.42.0" }, "peerDependencies": { "ace-builds": "*", "tslib": "2" }, "devDependencies": { "@babel/preset-env": "^7.23.5", "@babel/preset-react": "^7.23.3", "@babel/preset-typescript": "^7.23.3", "@biomejs/biome": "^1.9.4", "@chromatic-com/storybook": "^3", "@storybook/addon-essentials": "^8.6.13", "@storybook/addon-interactions": "^8.6.13", "@storybook/addon-links": "^8.6.13", "@storybook/addon-webpack5-compiler-babel": "^3.0.6", "@storybook/addons": "^7.6.2", "@storybook/blocks": "^8.6.13", "@storybook/react": "^8.6.13", "@storybook/react-webpack5": "^8.6.13", "@storybook/test": "^8.6.13", "@types/jest": "^29.5.10", "@types/react": "^18.3.3", "ace-builds": "^1.41.0", "jest": "^29.7.0", "prettier": "^3.1.0", "react": "^18.3.1", "react-ace": "^12.0.0", "react-dom": "^18.3.1", "rimraf": "^5.0.5", "storybook": "^8.6.13", "ts-jest": "^29.1.1", "tslib": "^2.6.3", "typescript": "^5.3.2" }, "jest": { "verbose": true, "testEnvironmentOptions": { "url": "http://localhost/" }, "moduleFileExtensions": [ "ts", "js" ], "transform": { "^.+\\.ts$": [ "ts-jest", { "useESM": true } ] }, "transformIgnorePatterns": [], "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$", "extensionsToTreatAsEsm": [ ".ts" ], "moduleNameMapper": { "^(\\.{1,2}/.*)\\.js$": "$1" } }, "prettier": { "arrowParens": "always", "printWidth": 120, "tabWidth": 2, "useTabs": false, "semi": true, "singleQuote": true, "trailingComma": "all", "bracketSpacing": false }, "config": { "config": { "commitizen": { "path": "git-cz" } } }, "packageManager": "yarn@4.6.0" }