loro/loro-js/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "loro-crdt",
2024-03-27 15:53:34 +00:00
"version": "0.12.0",
"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"
],
"main": "dist/loro.js",
"module": "dist/loro.mjs",
"typings": "dist/loro.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "vitest run",
"prepublish": "pnpm run build"
},
"author": "Loro",
"homepage": "https://loro.dev",
2023-11-12 15:23:12 +00:00
"license": "MIT",
"dependencies": {
2023-04-07 08:40:01 +00:00
"loro-wasm": "workspace:*"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
2023-07-28 18:03:51 +00:00
"@typescript-eslint/parser": "^6.2.0",
"@vitest/ui": "^1.0.4",
"esbuild": "^0.18.20",
2023-07-28 18:03:51 +00:00
"eslint": "^8.46.0",
"prettier": "^3.0.0",
"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",
"vitest": "^1.0.4"
}
2023-11-16 13:53:04 +00:00
}