-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.77 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
{
"name": "ssooop.github.io",
"version": "1.0.0",
"description": "Personal GitHub Pages site for SSooop / Alex Su, with bilingual AI pharma essays.",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"writer": "node tools/writer-studio/server.mjs",
"writer:test": "node --test tools/writer-studio/server.test.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"content:audit": "node scripts/audit-content.mjs",
"content:audit:network": "node scripts/audit-content.mjs --network",
"seo:audit": "node scripts/audit-seo.mjs",
"images:scaffold": "node scripts/scaffold-image-library.mjs",
"links:check": "node scripts/check-links.mjs",
"links:check:external": "node scripts/check-links.mjs --external",
"format": "prettier --write \"**/*.{astro,js,jsx,ts,tsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{astro,js,jsx,ts,tsx,json,md,css}\"",
"type-check": "tsc --noEmit",
"verify": "pnpm content:audit && pnpm format:check && pnpm lint && pnpm type-check && pnpm build && pnpm seo:audit && pnpm links:check",
"deps:update": "pnpm update --latest",
"test": "pnpm type-check",
"test:smoke": "pnpm build && playwright test",
"test:smoke:ci": "playwright test"
},
"keywords": [
"astro",
"react",
"personal-site",
"ai-pharma",
"bilingual-blog"
],
"author": "Alex Su",
"license": "PolyForm-Noncommercial-1.0.0",
"homepage": "https://ssooop.github.io/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/SSooop/SSooop.github.io.git"
},
"bugs": {
"url": "https://github.com/SSooop/SSooop.github.io/issues"
},
"engines": {
"node": ">=24 <25",
"pnpm": ">=11 <12"
},
"packageManager": "pnpm@11.9.0",
"dependencies": {
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/mdx": "^7.0.0",
"@astrojs/react": "^6.0.0",
"@tailwindcss/vite": "^4.3.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"astro": "^7.0.3",
"katex": "^0.18.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.35.2",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"eslint": "^10.5.0",
"eslint-plugin-astro": "^2.1.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript-eslint": "^8.62.0"
}
}