-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.35 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 5.35 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "secretariat",
"description": "Cryptographically attested AI-mediated correspondence — stamp ceremony, embed-stamp markdown, did:web verification.",
"private": true,
"version": "0.17.1",
"type": "module",
"author": "Rafa Ballestiero",
"copyright": "Copyright © 2026 Rafa Ballestiero. All rights reserved.",
"license": "MIT",
"overrides": {
"typescript-eslint": {
"typescript": "$typescript"
}
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"rust:fmt": "source ~/.cargo/env && cd src-tauri && cargo fmt",
"rust:fmt:check": "source ~/.cargo/env && cd src-tauri && cargo fmt --check",
"rust:clippy": "source ~/.cargo/env && cd src-tauri && cargo clippy -- -D warnings",
"rust:clippy:fix": "source ~/.cargo/env && cd src-tauri && cargo clippy --fix --allow-dirty",
"rust:test": "source ~/.cargo/env && cd src-tauri && cargo test",
"rust:bindings": "source ~/.cargo/env && cd src-tauri && cargo test export_bindings -- --ignored --nocapture",
"tauri": "tauri",
"tauri:dev": "source ~/.cargo/env && pnpm tauri dev",
"tauri:build": "pnpm tauri build",
"tauri:check": "pnpm typecheck && pnpm tauri build --check",
"test:all": "npm run test:run && npm run rust:test",
"check:all": "npm run typecheck && npm run lint && npm run ast:lint && npm run format:check && npm run rust:fmt:check && npm run rust:clippy && npm run test:run && npm run rust:test",
"fix:all": "npm run lint:fix && npm run format && npm run rust:fmt && npm run rust:clippy:fix",
"build:analyze": "vite build && echo '\\n📊 Bundle analysis complete. Check dist/ folder sizes or use a tool like webpack-bundle-analyzer on the dist folder.'",
"release:prepare": "node scripts/prepare-release.js",
"task:complete": "node scripts/complete-task.js",
"task:rename-done": "node scripts/complete-task.js --rename-existing",
"knip": "knip",
"jscpd": "jscpd",
"ast:lint": "ast-grep scan",
"ast:fix": "ast-grep scan --fix"
},
"dependencies": {
"@milkdown/core": "^7.21.1",
"@milkdown/crepe": "^7.21.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.9",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tauri-apps/plugin-window-state": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"i18next": "^25.7.3",
"js-yaml": "^4.1.1",
"lucide-react": "^1.7.0",
"react": "^19.2.3",
"react-arborist": "^3.7.0",
"react-day-picker": "^9.12.0",
"react-dom": "^19.2.3",
"react-i18next": "^17.0.0",
"react-resizable-panels": "^3.0.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"zustand": "^5.0.9"
},
"devDependencies": {
"@ast-grep/cli": "^0.42.0",
"@eslint/js": "^9.39.2",
"@rolldown/binding-darwin-arm64": "1.0.0-rc.18",
"@rolldown/plugin-babel": "^0.2.2",
"@tailwindcss/oxide-darwin-arm64": "^4.2.4",
"@tauri-apps/cli": "^2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.15",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jscpd": "^4.0.5",
"jsdom": "^29.0.1",
"knip": "^6.0.6",
"prettier": "^3.7.4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.49.0",
"vite": "^8.0.3",
"vitest": "^4.0.15",
"zod-validation-error": "^4.0.2"
}
}