mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-24 04:09:42 +00:00
62a3a93552
* feat: make vitest tests pass * chore: update readme & add deno test for web bundle * chore: bump version to 1.0.8-alpha.0 * chore: bump loro-crdt version * fix: build script export init method from loro-wasm/web * chore: bump version * chore: specify which files to include for npm publish * refactor: rename loro-js to loro-js-test * refactor: remove the old loro-js folder * fix: build scripts * chore: 1.0.8-alpha.3 * chore: add release info
27 lines
1 KiB
JSON
27 lines
1 KiB
JSON
{
|
|
"name": "loro",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"check-all": "cargo hack check --each-feature",
|
|
"build": "cargo build",
|
|
"test": "cargo nextest run --features=test_utils,jsonpath --no-fail-fast && cargo test --doc",
|
|
"test-all": "pnpm test && pnpm test-wasm",
|
|
"test-wasm": "cd crates/loro-wasm && pnpm i && pnpm build-dev",
|
|
"coverage": "mkdir -p coverage && cargo llvm-cov nextest --features test_utils,jsonpath --lcov > coverage/lcov-nextest.info && cargo llvm-cov report",
|
|
"release-wasm": "cd crates/loro-wasm && pnpm i && pnpm build-release",
|
|
"check": "cargo clippy --all-features -- -Dwarnings",
|
|
"run-fuzz-corpus": "cd crates/fuzz && cargo +nightly fuzz run all -- -max_total_time=1",
|
|
"fix": "cargo clippy --fix --features=test_utils",
|
|
"vet": "cargo vet"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@changesets/changelog-git": "^0.2.0",
|
|
"@changesets/cli": "^2.27.1"
|
|
}
|
|
}
|