-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 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
{
"name": "braillify-workspace",
"private": true,
"version": "1.0.0",
"description": "Braillify is a library for converting text to braille.",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "cargo tarpaulin --out xml --out stdout -- --skip test_by_testcase && vitest test --run && 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": "^24.10.1",
"@vitest/coverage-v8": "^4.0.12",
"braillify": "workspace:*",
"eslint": "^9.39.1",
"eslint-plugin-devup": "^2.0.11",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.12"
},
"author": "devfive",
"resolutions": {
"vite": "^6"
}
}