loro/crates/loro-wasm/package.json
github-actions[bot] 85b4722a27
Some checks are pending
Release WASM / Release (push) Waiting to run
Test All / build (push) Waiting to run
chore: version packages
2024-11-09 21:04:10 +08:00

58 lines
1.7 KiB
JSON

{
"name": "loro-crdt",
"version": "1.1.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"
],
"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",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"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"
},
"homepage": "https://loro.dev",
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"rollup": "^3.20.1",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-wasm": "^3.1.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitest/ui": "^1.0.4",
"esbuild": "^0.18.20",
"eslint": "^8.46.0",
"loro-crdt-old": "npm:loro-crdt@=0.16.0",
"loro-crdt-alpha-4": "npm:loro-crdt@=1.0.0-alpha.4",
"prettier": "^3.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"vite": "^4.2.1",
"vitest": "^1.4.0"
}
}