string-differ
Version:
A Javascript library to compare and transform strings.
34 lines • 783 B
JSON
{
"name": "string-differ",
"version": "2.0.1",
"description": "A Javascript library to compare and transform strings.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/uint4096/string-differ",
"keywords": [
"string",
"diff",
"operational",
"transforms",
"myers",
"crdt"
],
"author": "Abhishek Kumar",
"license": "MIT",
"devDependencies": {
"random-string-generator": "^1.0.7",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsc",
"build:w": "pnpm clean && tsc --watch",
"publish:npm": "pnpm clean && pnpm build && pnpm publish",
"test": "vitest"
}
}