forked from numman-ali/openskills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
{
"name": "openskills",
"version": "1.3.0",
"description": "Universal skills loader for AI coding agents - install and load Anthropic SKILL.md format skills in any agent",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"openskills": "./dist/cli.js"
},
"files": [
"dist",
"examples"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build && npm test"
},
"keywords": [
"anthropic",
"claude",
"claude-code",
"skills",
"ai",
"agents",
"coding-agent",
"cursor",
"windsurf",
"aider",
"progressive-disclosure",
"automation",
"developer-tools"
],
"author": "OpenSkills Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/numman-ali/openskills.git"
},
"homepage": "https://github.com/numman-ali/openskills#readme",
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@inquirer/prompts": "^7.9.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
}
}