forked from tortuvshin/open-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.6 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
{
"name": "open-apps-web",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "A static, community-curated directory of real open-source application codebases. Each app is a YAML file; activity is refreshed daily; the build pipeline renders an Astro site.",
"license": "MIT",
"packageManager": "pnpm@10.12.1",
"engines": {
"node": ">=20"
},
"scripts": {
"icons": "node scripts/fetch-icons.mjs",
"predev": "node scripts/fetch-icons.mjs",
"prebuild": "node scripts/fetch-icons.mjs",
"validate:data": "node scripts/validate-apps.mjs",
"build:data": "node scripts/validate-apps.mjs && node scripts/build-apps-json.mjs",
"build:llms-full": "node scripts/build-llms-full.mjs",
"build": "pnpm run build:data && pnpm run build:llms-full && astro build",
"dev": "pnpm run build:data && astro dev",
"start": "astro dev",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"refresh:activity": "node scripts/refresh-apps-activity.mjs",
"test": "node --test scripts/*.test.mjs",
"sync:contributors": "node scripts/sync-contributors.mjs",
"enrich:github": "node scripts/enrich-github-metadata.mjs",
"prewrangler:deploy": "pnpm run build",
"wrangler:deploy": "npx wrangler deploy"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.6",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.2"
},
"pnpm": {
"overrides": {
"yaml": "^2.9.0"
}
}
}