-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "ui-skills",
"type": "module",
"version": "0.2.4",
"license": "MIT",
"bin": {
"ui-skills": "bin/ui-skills.js"
},
"scripts": {
"dev": "astro dev",
"prebuild": "node ./scripts/sync-stonks.mjs",
"build": "astro build",
"postbuild": "node ./scripts/write-assetsignore.mjs",
"check:skills": "node --import tsx ./scripts/check-registry-skills.mjs",
"digests": "node --import tsx ./scripts/precompute-agent-skills-digests.mjs",
"check:digests": "node --import tsx ./scripts/check-agent-skills-digests.mjs",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"typecheck": "astro check",
"test": "node --import tsx --test tests/*.test.ts",
"smoke": "node tests/smoke.mjs",
"check": "npm run typecheck && npm run check:skills && npm test && npm run build && npm run smoke"
},
"dependencies": {
"@astrojs/cloudflare": "14.2.1",
"@astrojs/react": "6.0.2",
"@base-ui/react": "^1.4.1",
"@fontsource/fira-mono": "^5.2.7",
"@fontsource/jetbrains-mono": "^5.2.8",
"@tailwindcss/vite": "^4.3.3",
"astro": "7.2.1",
"markdown-for-agents": "^1.3.4",
"marked": "^17.0.1",
"motion": "^12.24.12",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"shiki": "^3.23.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.20.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@tailwindcss/typography": "^0.5.19",
"@types/marked": "^5.0.2",
"@types/node": "^25.9.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"tw-animate-css": "^1.4.0",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public"
}
}