-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.38 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": "ossrules",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "A browsable directory of AGENTS.md files from open source projects.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"check:routes": "node --import tsx scripts/check-project-routes.ts",
"check:agent-api": "node --import tsx scripts/check-agent-api.ts",
"lint": "biome check . && npx tsx scripts/validate-agents-md.ts && node --import tsx scripts/validate-skills.ts && node --import tsx scripts/measure-instructions.ts",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"validate": "npx tsx scripts/validate-agents-md.ts",
"sync:licenses": "node --import tsx scripts/sync-licenses.ts",
"sync:files": "npx tsx scripts/sync-agents-md-files.ts",
"check:files": "npx tsx scripts/sync-agents-md-files.ts --check",
"measure:files": "node --import tsx scripts/measure-instructions.ts",
"refresh": "npx tsx scripts/refresh-agents-md.ts",
"sync:skills": "node --import tsx scripts/sync-skills.ts",
"sync:instruction-contributors": "node --import tsx scripts/sync-instruction-contributors.ts",
"sync:skill-contributors": "node --import tsx scripts/sync-skill-contributors.ts",
"check:skills": "node --import tsx scripts/validate-skills.ts"
},
"dependencies": {
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@vercel/analytics": "^2.0.1",
"fflate": "^0.8.3",
"js-tiktoken": "^1.0.21",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-gfm": "^3.1.0",
"micromark-extension-gfm": "^3.0.0",
"next": "^16.2.11",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.4.3",
"yaml": "^2.9.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8.5.18",
"schema-dts": "^1.1.5",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"typescript": "^5"
},
"packageManager": "pnpm@10.13.1"
}