-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 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
{
"name": "@moon791017/neo-skills",
"version": "1.0.32",
"type": "module",
"description": "Neo Skills: A Universal Expert Agent Extension",
"homepage": "https://neo-blog-iota.vercel.app/",
"keywords": [
"gemini cli",
"claude code",
"copilot cli",
"openai codex cli",
"ai agent skills"
],
"bin": {
"neo-skills": "./bin/install-skills.js",
"install-skills": "./bin/install-skills.js",
"install-system-instructions": "./bin/install-system-instructions.js"
},
"files": [
"dist",
"bin",
"skills",
"commands",
"gemini-extension.json",
"GEMINI.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Benknightdark/neo-skills.git"
},
"scripts": {
"build": "bun run clean && bun run build:server && bun run build:hooks",
"build:server": "bun build src/server.ts --outdir dist --target node --minify",
"build:hooks": "bun build src/hooks/*.ts --outdir dist/hooks --target node --minify",
"install-deps": "npm install",
"clean": "rm -rf dist",
"start": "node dist/server.js",
"dev": "bun src/server.ts",
"typecheck": "tsc --noEmit",
"test": "node --test"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^25.6.0"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.15.0",
"cheerio": "^1.2.0",
"zod": "^4.3.6"
}
}