-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 818 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 818 Bytes
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
{
"name": "oneskill",
"version": "0.1.3",
"description": "Meta-skill manager for AI coding agents",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"oneskill": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"SKILL.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"skills",
"ai",
"agents",
"meta-skill",
"codex",
"gemini",
"claude"
],
"author": "OneSkill Contributors",
"license": "Apache-2.0",
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
}
}