2022-12-07 17:28:51 +00:00
|
|
|
{
|
2024-10-29 13:46:56 +00:00
|
|
|
"name": "loro-crdt",
|
2025-01-03 18:10:15 +00:00
|
|
|
"version": "1.2.7",
|
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.",
|
2023-11-16 14:26:41 +00:00
|
|
|
"keywords": [
|
|
|
|
"crdt",
|
|
|
|
"CRDTs",
|
|
|
|
"realtime",
|
|
|
|
"collaboration",
|
|
|
|
"sync",
|
|
|
|
"p2p"
|
|
|
|
],
|
2024-06-21 04:08:13 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/loro-dev/loro.git"
|
|
|
|
},
|
2024-10-29 13:46:56 +00:00
|
|
|
"main": "nodejs/index.js",
|
|
|
|
"module": "bundler/index.js",
|
|
|
|
"types": "bundler/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"./bundler",
|
|
|
|
"./nodejs",
|
|
|
|
"./web",
|
2024-11-16 11:18:29 +00:00
|
|
|
"./base64",
|
2024-10-29 13:46:56 +00:00
|
|
|
"CHANGELOG.md",
|
|
|
|
"README.md",
|
|
|
|
"LICENSE",
|
|
|
|
"package.json"
|
|
|
|
],
|
2023-11-12 13:14:21 +00:00
|
|
|
"scripts": {
|
2024-10-29 13:46:56 +00:00
|
|
|
"build-dev": "deno run -A ./scripts/build.ts dev && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
|
|
|
|
"build-release": "deno run -A ./scripts/build.ts release && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
|
|
|
|
"test": "node --expose-gc ./node_modules/vitest/vitest.mjs run && npx tsc --noEmit && cd ./deno_tests && deno test -A"
|
2023-11-12 13:14:21 +00:00
|
|
|
},
|
2023-11-10 12:41:11 +00:00
|
|
|
"homepage": "https://loro.dev",
|
2022-12-07 17:28:51 +00:00
|
|
|
"author": "",
|
2023-11-12 15:23:12 +00:00
|
|
|
"license": "MIT",
|
2022-12-12 05:44:49 +00:00
|
|
|
"devDependencies": {
|
2024-10-29 13:46:56 +00:00
|
|
|
"@rollup/plugin-alias": "^5.1.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
|
|
"@rollup/plugin-typescript": "^12.1.1",
|
2024-11-16 11:18:29 +00:00
|
|
|
"@rollup/plugin-wasm": "^6.2.2",
|
2024-10-29 13:46:56 +00:00
|
|
|
"@typescript-eslint/parser": "^6.2.0",
|
|
|
|
"@vitest/ui": "^1.0.4",
|
|
|
|
"esbuild": "^0.18.20",
|
|
|
|
"eslint": "^8.46.0",
|
|
|
|
"loro-crdt-alpha-4": "npm:loro-crdt@=1.0.0-alpha.4",
|
2024-11-16 11:18:29 +00:00
|
|
|
"loro-crdt-old": "npm:loro-crdt@=0.16.0",
|
2024-10-29 13:46:56 +00:00
|
|
|
"prettier": "^3.0.0",
|
2024-11-16 11:18:29 +00:00
|
|
|
"rollup": "^3.20.1",
|
2024-10-29 13:46:56 +00:00
|
|
|
"rollup-plugin-dts": "^5.3.0",
|
|
|
|
"rollup-plugin-esbuild": "^5.0.0",
|
2024-11-16 11:18:29 +00:00
|
|
|
"tslib": "^2.8.0",
|
|
|
|
"typescript": "^5.6.3",
|
2024-10-29 13:46:56 +00:00
|
|
|
"vite": "^4.2.1",
|
2024-11-16 11:18:29 +00:00
|
|
|
"vite-plugin-top-level-await": "^1.2.2",
|
|
|
|
"vite-plugin-wasm": "^3.1.0",
|
2024-10-29 13:46:56 +00:00
|
|
|
"vitest": "^1.4.0"
|
2022-12-12 05:44:49 +00:00
|
|
|
}
|
2023-11-14 15:02:52 +00:00
|
|
|
}
|