-
-
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) · 986 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 986 Bytes
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.18",
"oxlint": "^1.61.0",
"husky": "^9.1",
"bun-test-env-dom": "^1.0",
"@devup-ui/bun-plugin": "^1.0",
"@types/bun": "^1.3",
"eslint": "9"
},
"workspaces": [
"apps/*"
],
"scripts": {
"prelint": "cargo clippy -- -D warnings && cargo fmt --check && cargo check",
"build": "bun run -F ./apps/landing build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prelint:fix": "cargo clippy --fix --allow-dirty && cargo fmt && cargo check",
"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"
}
}