-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.39 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.39 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
{
"name": "braillify-workspace",
"private": true,
"version": "1.0.0",
"description": "Braillify is a library for converting text to braille.",
"type": "module",
"scripts": {
"lint": "oxlint . && cargo fmt --all -- --check && cargo clippy --workspace --all-targets -- -D warnings",
"lint:fix": "oxlint . --fix && cargo fmt --all && cargo clippy --workspace --all-targets --fix --allow-dirty --allow-staged -- -D warnings",
"test": "cargo tarpaulin --engine llvm --out xml --out stdout -- --skip test_by_testcase && bun test --coverage && cd py-test && uv run pytest",
"test:testcase": "cargo test -p braillify test_by_testcase -- --nocapture",
"preinstall": "uv sync && (cargo install wasm-pack || node -e \"process.exit(0)\") && (pip install maturin || \"process.exit(0)\")",
"build": "cargo build --release -p braillify && bun -F braillify build && cd packages/python && maturin build --release --out dist",
"build:landing": "bun run build && (cargo test test_by_testcase || node -e \"process.exit(0)\") && bun -F landing build",
"changepacks": "bunx @changepacks/cli",
"dev": "bun -F landing dev"
},
"workspaces": [
"packages/node",
"apps/landing"
],
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"braillify": "workspace:*",
"eslint-plugin-devup": "^2.0.19",
"oxlint": "^1.66.0"
},
"author": "devfive"
}