-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.33 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.33 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
{
"name": "vespera",
"version": "0.1.51",
"type": "module",
"description": "**FastAPI-like developer experience for Rust.** Zero-config OpenAPI 3.1 generation for Axum.",
"author": "devfive",
"devDependencies": {
"eslint-plugin-devup": "^2.0.19",
"oxlint": "^1.66.0",
"husky": "^9.1",
"bun-test-env-dom": "^1.0",
"@devup-ui/bun-plugin": "^1.0",
"@types/bun": "^1.3"
},
"workspaces": [
"apps/*"
],
"scripts": {
"prelint": "cargo clippy --all-targets --all-features -- -D warnings && cargo clippy --workspace --no-default-features -- -D warnings && cargo fmt --check",
"build": "bun run -F ./apps/landing build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prelint:fix": "cargo clippy --fix --all-targets --all-features --allow-dirty && cargo clippy --fix --workspace --no-default-features --allow-dirty && cargo fmt",
"lint:publish": "cargo publish --dry-run -p vespera_core && cargo publish --dry-run -p vespera_macro && cargo publish --dry-run -p vespera_inprocess && cargo publish --dry-run -p vespera_jni && cargo publish --dry-run -p vespera",
"test": "bun test",
"posttest": "cargo tarpaulin --out xml --out stdout --out html --all-targets",
"dev": "bun run --workspaces dev",
"api": "cargo run",
"prepare": "husky",
"changepacks": "bunx @changepacks/cli"
}
}