reconcile/reconcile-js/package.json
Andras Schmelczer a8fbac6934
Some checks failed
Publish / build (push) Waiting to run
Publish / publish-crate (push) Blocked by required conditions
Publish / publish-npm (push) Blocked by required conditions
Publish / publish-pypi (push) Blocked by required conditions
Check / build (push) Has been cancelled
Add react-native support (#63)
Reviewed-on: https://home.schmelczer.dev/git/git/andras/reconcile/pulls/63
2026-05-31 20:28:20 +01:00

53 lines
1.4 KiB
JSON

{
"name": "reconcile-text",
"version": "0.11.0",
"description": "Intelligent 3-way text merging with automated conflict resolution",
"main": "dist/reconcile.node.js",
"browser": "dist/reconcile.web.js",
"react-native": "dist/reconcile.rn.js",
"keywords": [
"text editing",
"sync",
"collaborative editing",
"3-way",
"merge",
"conflict resolution",
"OT",
"operational transformation",
"CRDT"
],
"homepage": "https://schmelczer.dev/reconcile/",
"repository": {
"type": "git",
"url": "git+https://github.com/schmelczer/reconcile.git"
},
"bugs": {
"url": "https://github.com/schmelczer/reconcile/issues",
"email": "andras@schmelczer.dev"
},
"author": "András Schmelczer <andras@schmelczer.dev>",
"license": "MIT",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "node scripts/build-rn.mjs && webpack --mode production",
"format": "prettier --write \"./**/*.(ts|mjs|scss|json|html)\"",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"binaryen": "^123.0.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"reconcile-text": "file:../pkg",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tslib": "2.8.1",
"typescript": "5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
}
}