@easbot/skills 0.2.48

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,86 @@
1
+ {
2
+ "name": "@easbot/skills",
3
+ "version": "0.2.48",
4
+ "description": "Skills management system for EAS Agent ecosystem (add / remove / list / find / update / sync / use)",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "bin": {
18
+ "easbot-skills": "./dist/cli.mjs"
19
+ },
20
+ "keywords": [
21
+ "easbot",
22
+ "skills",
23
+ "agent",
24
+ "skill-marketplace",
25
+ "mcp",
26
+ "ai",
27
+ "eas"
28
+ ],
29
+ "author": "houjallen",
30
+ "license": "MIT",
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/houjallen/easbot.git",
37
+ "directory": "packages/skills"
38
+ },
39
+ "homepage": "https://github.com/houjallen/easbot/tree/main/packages/skills#readme",
40
+ "bugs": {
41
+ "url": "https://github.com/houjallen/easbot/issues"
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "README.md",
46
+ "README.en.md",
47
+ "LICENSE"
48
+ ],
49
+ "dependencies": {
50
+ "@vercel/detect-agent": "^1.2.3",
51
+ "@clack/prompts": "^1.7.0",
52
+ "picocolors": "^1.1.1",
53
+ "simple-git": "^3.36.0",
54
+ "xdg-basedir": "^5.1.0",
55
+ "yaml": "^2.9.0",
56
+ "zod": "^4.4.3",
57
+ "@easbot/utils": "0.2.48",
58
+ "@easbot/types": "0.2.48",
59
+ "@easbot/mcp": "0.2.48"
60
+ },
61
+ "devDependencies": {
62
+ "@biomejs/biome": "^2.4.14",
63
+ "@types/node": "^25.6.2",
64
+ "tsup": "^8.5.1",
65
+ "typescript": "^6.0.3",
66
+ "vitest": "^4.1.5"
67
+ },
68
+ "engines": {
69
+ "node": ">=22.22.3"
70
+ },
71
+ "scripts": {
72
+ "dev": "tsup --watch --env.NODE_ENV development",
73
+ "build": "tsup --env.NODE_ENV production",
74
+ "test": "vitest",
75
+ "test:run": "vitest run",
76
+ "lint": "biome check .",
77
+ "lint:fix": "biome check --write .",
78
+ "lint:report": "biome check --reporter=summary .",
79
+ "format": "biome format .",
80
+ "format:fix": "biome format --write .",
81
+ "type-check": "tsc --noEmit",
82
+ "clean": "npx rimraf dist node_modules",
83
+ "publish:npm": "bash scripts/publish.sh",
84
+ "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
85
+ }
86
+ }