-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.08 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.08 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
{
"name": "braillify-workspace",
"private": true,
"version": "1.0.0",
"description": "Braillify is a library for converting text to braille.",
"type": "module",
"scripts": {
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "cargo tarpaulin --out xml --out stdout -- --skip test_by_testcase && bun test --coverage && cd py-test && uv run pytest __init__.py",
"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"
},
"workspaces": [
"packages/node",
"apps/landing"
],
"devDependencies": {
"@types/node": "^25.5.0",
"braillify": "workspace:*",
"eslint-plugin-devup": "^2.0.17",
"oxlint": "^1.55",
"@types/bun": "^1.3"
},
"author": "devfive"
}