2023-03-24 02:08:11 +00:00
|
|
|
{
|
|
|
|
"name": "loro-crdt",
|
2023-11-12 13:09:42 +00:00
|
|
|
"version": "0.4.1",
|
2023-11-10 12:41:11 +00:00
|
|
|
"description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.",
|
|
|
|
"keywords": [
|
|
|
|
"crdt",
|
|
|
|
"CRDTs",
|
|
|
|
"realtime",
|
|
|
|
"collaboration",
|
|
|
|
"sync",
|
|
|
|
"p2p"
|
|
|
|
],
|
2023-03-24 02:08:11 +00:00
|
|
|
"main": "dist/loro.js",
|
|
|
|
"module": "dist/loro.mjs",
|
|
|
|
"typings": "dist/loro.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c",
|
2023-03-24 03:44:32 +00:00
|
|
|
"watch": "rollup -c -w",
|
2023-05-11 03:59:48 +00:00
|
|
|
"test": "vitest run",
|
|
|
|
"prepublish": "pnpm run build"
|
2023-03-24 02:08:11 +00:00
|
|
|
},
|
2023-11-10 12:41:11 +00:00
|
|
|
"author": "Loro",
|
|
|
|
"homepage": "https://loro.dev",
|
2023-11-12 15:23:12 +00:00
|
|
|
"license": "MIT",
|
2023-03-24 02:08:11 +00:00
|
|
|
"dependencies": {
|
2023-04-07 08:40:01 +00:00
|
|
|
"loro-wasm": "workspace:*"
|
2023-03-24 02:08:11 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
2023-07-28 18:03:51 +00:00
|
|
|
"@typescript-eslint/parser": "^6.2.0",
|
2023-10-30 10:32:36 +00:00
|
|
|
"@vitest/ui": "^0.34.6",
|
2023-11-03 08:59:27 +00:00
|
|
|
"esbuild": "^0.18.20",
|
2023-07-28 18:03:51 +00:00
|
|
|
"eslint": "^8.46.0",
|
|
|
|
"prettier": "^3.0.0",
|
2023-03-24 02:08:11 +00:00
|
|
|
"rollup": "^3.20.1",
|
|
|
|
"rollup-plugin-dts": "^5.3.0",
|
|
|
|
"rollup-plugin-esbuild": "^5.0.0",
|
2023-03-24 09:42:00 +00:00
|
|
|
"typescript": "^5.0.2",
|
|
|
|
"vite": "^4.2.1",
|
|
|
|
"vite-plugin-wasm": "^3.2.2",
|
2023-11-03 13:40:34 +00:00
|
|
|
"vitest": "^0.34.0"
|
2023-03-24 02:08:11 +00:00
|
|
|
}
|
2023-11-12 15:23:12 +00:00
|
|
|
}
|