-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.98 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
{
"name": "@haodehaode378/repo2skill",
"version": "0.4.0",
"description": "Compile evidence-backed onboarding context for Node.js and TypeScript repositories.",
"type": "module",
"homepage": "https://github.com/haodehaode378/repo2skill#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/haodehaode378/repo2skill.git"
},
"bugs": {
"url": "https://github.com/haodehaode378/repo2skill/issues"
},
"bin": {
"repo2skill": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"benchmark": "tsx src/cli/benchmark.ts",
"evaluate": "tsx src/cli/evaluate.ts",
"build": "tsup src/cli/index.ts --format esm --clean",
"prepack": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"format": "prettier --write \"**/*.{ts,md,yml,yaml,json}\"",
"format:check": "prettier --check \"**/*.{ts,md,yml,yaml,json}\"",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"release:check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage && npm run build"
},
"engines": {
"node": ">=20"
},
"keywords": [
"codex",
"claude",
"agent",
"ai-agents",
"skills",
"onboarding",
"github",
"cli",
"agents-md",
"repository-analysis",
"security-audit",
"supply-chain",
"developer-tools"
],
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"fs-extra": "^11.3.0",
"tinyglobby": "^0.2.17",
"yaml": "^2.9.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.26.0",
"globals": "^16.0.0",
"prettier": "^3.8.3",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"vitest": "^3.1.2"
}
}