-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.42 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "leptos-forms-rs",
"version": "1.1.0",
"description": "Type-safe, reactive form handling library for Leptos applications",
"private": true,
"packageManager": "pnpm@8.15.0",
"scripts": {
"dev": "cargo watch -x 'run --package basic-form-example'",
"dev:complex": "cargo watch -x 'run --package complex-form-example'",
"build": "cargo build",
"build:wasm": "wasm-pack build leptos-forms-rs --target web",
"build:wasm:optimized": "./scripts/build-wasm.sh",
"build:wasm:minimal": "wasm-pack build leptos-forms-rs --target web --release --features minimal",
"analyze:wasm": "./scripts/analyze-wasm.sh",
"test": "cargo test",
"test:wasm": "wasm-pack test --headless --firefox",
"test:wasm:chrome": "wasm-pack test --headless --chrome",
"test:wasm:node": "wasm-pack test --node",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:install": "playwright install",
"test:e2e:codegen": "playwright codegen",
"test:e2e:show-report": "playwright show-report",
"test:server": "node tests/e2e/web-server/server.js",
"test:server:start": "pnpm run test:server",
"check": "cargo check",
"clippy": "cargo clippy",
"fmt": "cargo fmt",
"fmt:check": "cargo fmt --check",
"audit": "cargo audit",
"clean": "cargo clean && rm -rf target/",
"docs": "cargo doc --open",
"lint": "pnpm run fmt:check && pnpm run clippy",
"pre-commit": "pnpm run lint && pnpm run test",
"ci": "pnpm run lint && pnpm run test && pnpm run test:wasm:node && pnpm run test:e2e"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/node": "^20.10.0",
"@vitest/ui": "^3.2.4",
"binaryen": "^116.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"playwright": "^1.40.0",
"prettier": "^3.1.0",
"terser": "^5.24.0",
"typescript": "^5.3.0",
"vite": "^7.1.5",
"vitest": "^3.2.4",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/leptos-forms-rs.git"
},
"keywords": [
"leptos",
"forms",
"rust",
"wasm",
"web",
"validation"
],
"author": "Your Name",
"license": "MIT"
}