loro/crates/loro-wasm/package.json

61 lines
1.8 KiB
JSON
Raw Normal View History

2022-12-07 17:28:51 +00:00
{
"name": "loro-crdt",
2025-01-03 18:10:15 +00:00
"version": "1.2.7",
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/loro-dev/loro.git"
},
"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",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
2023-11-12 13:14:21 +00:00
"scripts": {
"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
},
"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": {
"@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",
"@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",
"prettier": "^3.0.0",
2024-11-16 11:18:29 +00:00
"rollup": "^3.20.1",
"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",
"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",
"vitest": "^1.4.0"
2022-12-12 05:44:49 +00:00
}
2023-11-14 15:02:52 +00:00
}