-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "aweskill",
"version": "0.2.7",
"description": "Skill package manager for AI agents: install, update, bundle, and project skills across Codex, Claude Code, Cursor, Gemini CLI, Qwen Code, Windsurf, and more.",
"license": "MPL-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"resources",
"README.md",
"README.zh-CN.md"
],
"bin": {
"aweskill": "dist/index.js"
},
"scripts": {
"build": "tsup --config config/tsup.config.ts",
"dev": "tsx src/index.ts",
"prepare": "npm run build",
"prepack": "npm run build",
"test": "vitest run --config config/vitest.config.ts"
},
"engines": {
"node": ">=20"
},
"keywords": [
"cli",
"skills",
"agents",
"claude-code",
"codex",
"cursor"
],
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.1",
"picocolors": "^1.1.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^24.7.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mugpeng/aweskill.git"
},
"author": "",
"bugs": {
"url": "https://github.com/mugpeng/aweskill/issues"
},
"homepage": "https://github.com/mugpeng/aweskill#readme"
}