-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.05 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
{
"name": "shell",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start -p 3100",
"typecheck": "tsc --noEmit",
"gen:icons": "node scripts/gen-icons.mjs",
"gen:tauri-icons": "npm run gen:icons && tauri icon src-tauri/icons/app-icon.png",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run --passWithNoTests",
"prepare": "husky",
"seed:demo": "tsx scripts/seed-demo.ts",
"seed:embed-demo": "tsx scripts/seed-embed-demo.ts",
"seed:drive": "tsx scripts/seed-drive.ts",
"smoke:vault": "tsx scripts/smoke-vault.ts",
"test:provider-accounts": "tsx scripts/test-provider-accounts.ts",
"test:email": "tsx scripts/test-email.ts",
"test:manual-account": "tsx scripts/test-manual-account.ts",
"test:provider-entry": "tsx scripts/test-provider-entry.ts",
"wasm": "cd crypto-core && wasm-pack build --target web --out-dir ../src/lib/vault/pkg --no-pack",
"export": "TAURI=1 next build",
"tauri:dev": "tauri dev",
"tauri:build": "TAURI=1 tauri build",
"tauri:build:dmg": "CI=true TAURI=1 tauri build --bundles dmg"
},
"dependencies": {
"@inrupt/solid-client": "^3.0.0",
"@inrupt/solid-client-authn-browser": "^4.0.0",
"@inrupt/solid-client-authn-node": "^3.1.0",
"@mind-studio/core": "^0.7.0",
"@mind-studio/ui": "^0.7.0",
"@tauri-apps/api": "^2.11.0",
"lucide-react": "^0.460.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@tailwindcss/postcss": "^4",
"@tauri-apps/cli": "^2.11.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc}": "biome check --write --no-errors-on-unmatched"
}
}