loro/package.json

28 lines
1 KiB
JSON
Raw Normal View History

{
"name": "loro",
"version": "1.0.0",
2023-11-12 13:11:54 +00:00
"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": "",
2023-12-05 05:38:09 +00:00
"license": "ISC",
"devDependencies": {
2024-04-04 18:25:25 +00:00
"@changesets/changelog-git": "^0.2.0",
2023-12-05 05:38:09 +00:00
"@changesets/cli": "^2.27.1"
}
}