-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.59 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.59 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
{
"$schema": "https://json.schemastore.org/package",
"name": "zen-type",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "astro dev --bun",
"build": "astro build --bun",
"preview": "astro preview --bun",
"astro": "astro",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.astro",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro --fix",
"check": "astro check",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/sitemap": "^3.7.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"astro": "^6.1.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.4.2",
"diff": "^8.0.4",
"fuse.js": "^7.3.0",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"react-compiler-runtime": "^1.0.0",
"tailwind-merge": "^3.5.0"
},
"overrides": {
"glob": ">=10.5.0",
"vite": "^7",
"js-yaml": ">=4.1.1",
"mdast-util-to-hast": ">=13.2.1",
"rollup": ">=4.59.0",
"yaml": ">=2.8.3",
"minimatch": ">=3.1.3",
"svgo": ">=4.0.1",
"flatted": ">=3.4.0",
"postcss": ">=8.5.10",
"picomatch": ">=4.0.4",
"ajv": "^8.18.0 || ^6.12.4"
},
"devDependencies": {
"@astrojs/react": "^5.0.0",
"@astrojs/tailwind": "^6.0.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"astro-eslint-parser": "^1.4.0",
"autoprefixer": "^10.5.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^27.4.0",
"postcss": "^8.5.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}