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
73 lines (73 loc) · 1.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.78 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
{
"name": "openskills",
"version": "2.0.6",
"description": "Execution-first skills system for AI coding agents. Execute skills, don't read them.",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"openskills": "./dist/cli.js"
},
"files": [
"dist",
"examples",
"builtin-skills"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"build:sea:bundle": "node scripts/sea/build.mjs",
"build:sea:blob": "node --experimental-sea-config sea-config.json",
"build:sea:inject": "node scripts/sea/inject.mjs",
"build:sea:current": "npm run build:sea:bundle && npm run build:sea:inject",
"pretest": "npm run build",
"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",
"cline",
"progressive-disclosure",
"execution-first",
"automation",
"developer-tools",
"script-runner"
],
"author": "ain3sh and OpenSkills Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ain3sh/openskills.git"
},
"homepage": "https://github.com/ain3sh/openskills#readme",
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@inquirer/prompts": "^7.9.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"jsonc-parser": "^3.3.1",
"ora": "^9.0.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"esbuild": "^0.24.0",
"postject": "1.0.0-alpha.6",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
}
}