-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
{
"name": "clocktopus",
"version": "1.2.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"l10n:build": "lingui extract --clean --overwrite && lingui compile --strict",
"build": "tsc -b && bun run l10n:build && vite build",
"build:release": "bun ./scripts/build-release.ts",
"publish": "bun ./scripts/publish.ts",
"preview": "vite preview",
"knip": "knip",
"knip:fix": "knip --fix-type exports,types",
"knip:ci": "knip",
"lint": "eslint .",
"lint:fix": "bun run lint -- --fix",
"lint:time": "TIMING=15 bun run lint",
"lint:inspect": "eslint --inspect-config",
"validate": "bun run build && bun knip && bun lint",
"analyze": "bunx vite-bundle-analyzer"
},
"dependencies": {
"@floating-ui/react": "0.27.19",
"@lingui/core": "5.9.2",
"@lingui/react": "5.9.2",
"@radix-ui/react-checkbox": "1.3.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tooltip": "1.2.8",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@yaasl/core": "0.15.0-alpha.1",
"@yaasl/devtools": "0.15.0-alpha.1",
"@yaasl/react": "0.15.0-alpha.1",
"class-variance-authority": "0.7.1",
"goober": "2.1.18",
"lucide-react": "0.577.0",
"motion": "12.35.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "3.5.0",
"wouter": "3.9.0",
"zod": "4.3.6"
},
"devDependencies": {
"@lingui/babel-plugin-lingui-macro": "5.9.2",
"@lingui/cli": "5.9.2",
"@lingui/vite-plugin": "5.9.2",
"@pretty-cozy/eslint-config": "0.8.0",
"@pretty-cozy/release-tools": "0.9.0",
"@tailwindcss/vite": "4.2.1",
"@types/bun": "1.3.10",
"@vitejs/plugin-react": "5.1.4",
"eslint": "9.39.3",
"knip": "5.85.0",
"tailwindcss": "4.2.1",
"tailwindcss-animate": "1.0.7",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-tsconfig-paths": "6.1.1"
},
"overrides": {
"@radix-ui/react-slot": "1.2.4",
"typescript": "5.9.3",
"vite": "7.3.1"
}
}