-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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
{
"name": "parsify-dev",
"version": "2.0.0",
"private": true,
"description": "AI & LLM Developer Tools - Privacy-first browser utilities for agent and LLM application developers.",
"homepage": "https://parsify.dev",
"repository": "https://github.com/youming-ai/parsify.dev",
"author": "Youming <ikashue@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build && bun scripts/generate-sitemap.ts",
"generate:og": "bun scripts/generate-og.ts",
"preview": "astro preview",
"lint": "bunx biome check ./src",
"lint:fix": "bunx biome check --fix ./src",
"format": "bunx biome format --write ./src",
"typecheck": "astro check",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "husky",
"clean": "rm -rf node_modules dist"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": ["biome check --fix --no-errors-on-unmatched"],
"*.{ts,tsx}": ["vitest related --run --passWithNoTests"]
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-switch": "^1.2.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^2.6.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/react": "^4.4.2",
"@astrojs/tailwind": "^6.0.2",
"@biomejs/biome": "^1.9.4",
"@fontsource/inter": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.5",
"astro": "^5.18.1",
"autoprefixer": "^10.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.12",
"satori": "^0.26.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.5"
}