forked from tech-leads-club/agent-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.14 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tech-leads-club/agent-skills-monorepo",
"version": "0.0.0",
"author": "Tech Leads Club",
"license": "MIT",
"private": true,
"type": "module",
"description": "AI agent skills CLI and toolkit",
"workspaces": [
"packages/*",
"libs/*"
],
"engines": {
"node": ">=24"
},
"bugs": {
"url": "https://github.com/tech-leads-club/agent-skills/issues"
},
"homepage": "https://github.com/tech-leads-club/agent-skills#readme",
"scripts": {
"build": "nx run-many -t build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:skill": "nx g @tech-leads-club/skill-plugin:skill",
"generate:data": "nx run-many -t generate-data --output-style=stream",
"generate:registry": "nx run @tech-leads-club/skills-catalog:generate-registry",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run scan",
"release": "npm run scan && nx release",
"release:beta": "npm run scan && nx release --preid beta",
"release:beta:dry": "nx release --preid beta --dry-run",
"release:dry": "nx release --dry-run",
"scan": "npx nx run @tech-leads-club/skills-catalog:security-scan",
"validate": "npx tsx tools/validate-skills.ts --batch packages/skills-catalog/skills",
"start:dev:cli": "npm run dev --workspace=@tech-leads-club/agent-skills",
"start:dev:mcp": "npm run start:dev --workspace=@tech-leads-club/agent-skills-mcp",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' nx run-many -t test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tech-leads-club/agent-skills.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"agents",
"ai",
"antigravity",
"claude-code",
"cli",
"copilot",
"cursor",
"opencode",
"skills"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/inspector": "^2.0.0",
"@nx/devkit": "23.1.1",
"@nx/esbuild": "23.1.1",
"@nx/eslint": "23.1.1",
"@nx/eslint-plugin": "23.1.1",
"@nx/jest": "23.1.1",
"@nx/js": "23.1.1",
"@nx/next": "23.1.1",
"@nx/node": "23.1.1",
"@nx/plugin": "23.1.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "1.15.21",
"@swc/helpers": "~0.5.20",
"@types/jest": "^30.0.0",
"@types/node": "^24",
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.6.0",
"jest": "^30.3.0",
"jest-environment-node": "^30.3.0",
"jest-util": "^30.3.0",
"jsonc-eslint-parser": "^2.4.2",
"next": "16.2.12",
"nx": "23.1.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"yaml": "^2.8.3"
},
"overrides": {
"brace-expansion": "5.0.9",
"next": {
"postcss": "8.5.25",
"sharp": "0.35.3"
}
},
"nx": {
"includedScripts": []
}
}