-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "react-component-lens-workspace",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dev-five-git/react-component-lens"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"build:production": "bun run --filter '*' build:production",
"typecheck": "bun run --filter '*' typecheck",
"lint": "bun run lint:js && bun run lint:rust",
"lint:js": "oxlint .",
"lint:rust": "bun run lint:rust:fmt && bun run lint:rust:clippy && bun run lint:rust:clippy:wasm && bun run lint:rust:clippy:wasm-core",
"lint:rust:fmt": "cargo fmt --all -- --check",
"lint:rust:clippy": "cargo clippy --workspace --exclude rcl-zed --exclude rcl-core-wasm --all-targets -- -D warnings",
"lint:rust:clippy:wasm": "cargo clippy --target wasm32-wasip1 --release -p rcl-zed -- -D warnings",
"lint:rust:clippy:wasm-core": "cargo clippy --target wasm32-unknown-unknown --release -p rcl-core-wasm -- -D warnings",
"lint:fix": "oxlint . --fix && cargo fmt --all",
"test": "bun run test:rust && bun run test:wasm-core && bun run test:wasm && bun run build && bun run test:integration",
"test:rust": "cargo test --workspace --exclude rcl-zed --exclude rcl-core-wasm",
"test:wasm-core": "wasm-pack test --node packages/core-wasm",
"test:integration": "bun run --filter react-component-lens test:integration",
"test:wasm": "cargo build --target wasm32-wasip1 --release -p rcl-zed",
"test:coverage": "cargo tarpaulin --engine llvm --workspace --exclude rcl-zed --exclude rcl-core-wasm --exclude-files \"**/src/bin/**\" --exclude-files \"**/tests/**\" --exclude-files \"packages/core-wasm/**\" --out Stdout --fail-under 100",
"prepare": "husky"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "25.9.1",
"bun-types": "^1.3.14",
"eslint-plugin-devup": "^2.0.19",
"globals": "17.6.0",
"husky": "^9.1.7",
"oxlint": "^1.68"
}
}