-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.74 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
{
"name": "noura",
"private": true,
"type": "module",
"version": "0.1.0",
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"scripts": {
"dev:website": "bun run --cwd apps/website dev",
"build:website": "bun run --cwd apps/website build",
"check:website": "bun run --cwd apps/website check",
"build": "bun run --filter '*' build",
"check": "bun run --filter '*' check",
"test": "bun test && cargo test --workspace",
"lint": "bun run --filter '*' lint",
"format:check": "prettier --check . && cargo fmt --all --check",
"wasm:build": "bun --cwd packages/workspace-format-wasm wasm:build",
"wasm:test": "bun run wasm:build && bun --cwd packages/workspace-format-wasm test:runtime",
"bindings:generate": "bash scripts/sync-bindings.sh",
"bindings:check": "bash scripts/sync-bindings.sh && git diff --exit-code -- crates/local-core/bindings packages/shared/src/generated",
"verify:pi-runtime": "bun --cwd apps/app vite build --config vite.pi-runtime-spike.config.ts && bun scripts/verify-pi-runtime-bundle.ts",
"licenses:check": "cargo deny check licenses advisories && license-checker-rseidelsohn --production --excludePrivatePackages --onlyAllow 'MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;CC0-1.0;OFL-1.1;Unicode-3.0;0BSD;BlueOak-1.0.0'",
"tauri": "bun --cwd src-tauri ../apps/app/node_modules/@tauri-apps/cli/tauri.js"
},
"devDependencies": {
"@eslint/js": "latest",
"@types/bun": "latest",
"eslint": "latest",
"license-checker-rseidelsohn": "5.0.1",
"prettier": "latest",
"prettier-plugin-svelte": "latest",
"railway": "^3.11.0",
"typescript": "^5.9.3",
"typescript-eslint": "latest"
},
"patchedDependencies": {
"better-auth@1.7.2": "patches/better-auth@1.7.2.patch"
}
}