-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.54 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
75
76
77
78
79
80
81
82
83
84
{
"name": "thepulimaangani",
"private": true,
"type": "module",
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"engines": {
"node": ">=24"
},
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "pnpm run build:wasm && vite dev --port 3000",
"build": "pnpm run build:wasm && vite build",
"build:wasm": "bash build/tamil_seiyul_alagi_wasm.sh",
"build:wasm:old": "cd tamil-seiyul-alagi && wasm-pack build --target web --out-dir pkg && cd .. && rsync --mkpath -a tamil-seiyul-alagi/pkg/ src/wasm/ && echo '✅ WASM copied to src/wasm/'",
"build:only": "vite build",
"preview": "vite preview",
"test": "pnpm run test:rust && pnpm run test:frontend",
"test:rust": "cd tamil-seiyul-alagi && cargo test",
"dump:test-fixture": "cd tamil-seiyul-alagi && cargo run --example dump_live_preview_fixture",
"dump:test-fixtures": "cd tamil-seiyul-alagi && cargo run --example dump_live_preview_fixture && cargo run --example dump_kural_parse_features_fixture",
"codegen:parse-result-openapi": "cd tamil-seiyul-alagi && cargo run --example export_parse_result_openapi",
"codegen:parse-result-client": "node --experimental-strip-types scripts/codegen-parse-result-client.ts",
"codegen:parse-result": "pnpm run codegen:parse-result-openapi && pnpm run codegen:parse-result-client",
"test:frontend": "vitest run",
"test:frontend:coverage": "vitest run --coverage",
"crap:report": "python3 dx/crap_report.py --lizard-xml lizard-rust.xml --rust-cov tamil-seiyul-alagi/llvm-cov-summary.json --vitest-summary coverage/coverage-summary.json --out-md crap-report.md",
"crap:local": "pnpm run build:wasm && lizard tamil-seiyul-alagi/src --exclude tamil-seiyul-alagi/src/wasm -X -o lizard-rust.xml && cd tamil-seiyul-alagi && cargo llvm-cov test --summary-only --json --output-path llvm-cov-summary.json && cd .. && pnpm run test:frontend:coverage && pnpm run crap:report",
"test:watch": "vitest",
"lint": "echo 'No linter configured yet'",
"typecheck": "tsc --noEmit",
"ci:frontend": "bash scripts/ci-frontend.sh",
"ci:crap-frontend": "bash scripts/ci-crap-frontend.sh",
"gate": "bash scripts/gate.sh",
"precommit": "bash scripts/pre-commit.sh",
"prepare": "husky"
},
"dependencies": {
"@chenglou/pretext": "^0.0.6",
"@fontsource-variable/geist": "^5.2.8",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-router": "1.169.2",
"@tanstack/react-start": "1.167.65",
"@xstate/react": "^6.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"motion": "^12.38.0",
"nitro": "3.0.260429-beta",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"shadcn": "^4.5.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"xstate": "^5.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"openapi-typescript": "^7.13.0",
"typescript": "^5.7.2",
"vite": "^8.0.0",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss",
"msw"
]
}
}