-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
{
"name": "openskill-cli",
"version": "1.0.2",
"description": "Agent-agnostic skill manager for AI coding agents (Claude Code, Cursor, Codex, Antigravity)",
"type": "module",
"main": "./dist/cli/index.js",
"bin": {
"openskill": "./dist/cli/index.js",
"osk": "./dist/cli/index.js"
},
"files": [
"dist/cli",
"dist/core",
"dist/agents",
"dist/utils",
"!dist/**/*.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:binaries": "npm run build && node scripts/build-binaries.mjs",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check && npm run build && npm test -- --run",
"test": "vitest",
"prepublishOnly": "npm run check",
"prerelease": "npm run check",
"release:patch": "npm run prerelease && npm version patch && git push",
"release:minor": "npm run prerelease && npm version minor && git push",
"release:major": "npm run prerelease && npm version major && git push"
},
"keywords": [
"ai",
"agent",
"skills",
"claude",
"claude-code",
"codex",
"cursor",
"antigravity",
"cli",
"skill-manager"
],
"author": "Vu Nguyen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vudknguyen/openskill.git"
},
"homepage": "https://github.com/vudknguyen/openskill#readme",
"bugs": {
"url": "https://github.com/vudknguyen/openskill/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"commander": "^12.1.0",
"gray-matter": "^4.0.3",
"tar": "^7.5.7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.9.0",
"@types/tar": "^6.1.13",
"@vitest/coverage-v8": "^2.1.9",
"@yao-pkg/pkg": "^6.12.0",
"esbuild": "^0.27.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.53.0",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}