nikou-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "nikou-cli",
3
+ "version": "0.1.0",
4
+ "description": "Install Agent Skills and MCP servers, and run distributed AI hook workers.",
5
+ "type": "module",
6
+ "bin": {
7
+ "nikou-cli": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format esm --dts --clean",
14
+ "dev": "tsup src/index.ts --format esm --watch",
15
+ "test": "tsx --test test/**/*.test.ts",
16
+ "privacy-scan": "node scripts/privacy-scan.mjs",
17
+ "pack:check": "npm pack --dry-run --json --registry=https://registry.npmjs.org/",
18
+ "prepublishOnly": "npm run build && npm test && npm run privacy-scan && npm run pack:check"
19
+ },
20
+ "dependencies": {
21
+ "@larksuiteoapi/node-sdk": "^1.59.0",
22
+ "chalk": "^5.4.1",
23
+ "commander": "^13.1.0",
24
+ "gray-matter": "^4.0.3",
25
+ "mysql2": "^3.16.0",
26
+ "open": "^11.0.0",
27
+ "ora": "^8.2.0",
28
+ "tar": "^7.4.3",
29
+ "ws": "^8.20.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^22.13.5",
33
+ "@types/ws": "^8.18.1",
34
+ "tsup": "^8.4.0",
35
+ "tsx": "^4.20.6",
36
+ "typescript": "^5.7.3"
37
+ },
38
+ "overrides": {
39
+ "axios": "^1.18.1",
40
+ "esbuild": "^0.28.1"
41
+ },
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
45
+ "keywords": [
46
+ "agent",
47
+ "skills",
48
+ "cli",
49
+ "mcp",
50
+ "prompt",
51
+ "ai-hook",
52
+ "codex",
53
+ "claude",
54
+ "gemini"
55
+ ],
56
+ "license": "MIT",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "git+https://github.com/VangelisHaha/nikou-cli.git"
60
+ },
61
+ "bugs": {
62
+ "url": "https://github.com/VangelisHaha/nikou-cli/issues"
63
+ },
64
+ "homepage": "https://github.com/VangelisHaha/nikou-cli#readme",
65
+ "publishConfig": {
66
+ "access": "public",
67
+ "registry": "https://registry.npmjs.org/"
68
+ }
69
+ }