mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-24 20:20:36 +00:00
27 lines
1.1 KiB
JSON
27 lines
1.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 --no-fail-fast && cargo test --doc",
|
|
"test-all": "nr test && nr test-wasm",
|
|
"test-wasm": "cd crates/loro-wasm && deno task dev && cd ../../loro-js && pnpm i && pnpm run test",
|
|
"coverage": "mkdir -p coverage && cargo llvm-cov nextest --features test_utils --lcov > coverage/lcov-nextest.info && cargo llvm-cov report",
|
|
"release-wasm": "cd crates/loro-wasm && deno task release && cd ../../loro-js && pnpm i && pnpm build && pnpm run test",
|
|
"check": "cargo clippy --all-features",
|
|
"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"
|
|
}
|
|
}
|