@boses/skillink 0.0.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/LICENSE +21 -0
- package/README.md +111 -0
- package/dist/bin/skillink.d.ts +1 -0
- package/dist/bin/skillink.js +8 -0
- package/dist/chunk-ZEFDUUIX.js +2628 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +64 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@boses/skillink",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "统一 AI Skills 管理工具 - 像 pnpm 一样链接到各 AI 工具目录",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"skillink": "./dist/bin/skillink.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"ai",
|
|
25
|
+
"skills",
|
|
26
|
+
"cursor",
|
|
27
|
+
"gemini",
|
|
28
|
+
"cli",
|
|
29
|
+
"sync",
|
|
30
|
+
"symlink"
|
|
31
|
+
],
|
|
32
|
+
"author": "",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"cac": "^6.7.14",
|
|
36
|
+
"chokidar": "^5.0.0",
|
|
37
|
+
"commander": "^14.0.3",
|
|
38
|
+
"jiti": "^2.6.1"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@eslint/js": "^10.0.1",
|
|
42
|
+
"@eslint/markdown": "^7.5.1",
|
|
43
|
+
"@inquirer/prompts": "^8.2.0",
|
|
44
|
+
"@types/node": "^25.2.1",
|
|
45
|
+
"eslint": "^10.0.0",
|
|
46
|
+
"globals": "^17.3.0",
|
|
47
|
+
"picocolors": "^1.1.1",
|
|
48
|
+
"prettier": "^3.8.1",
|
|
49
|
+
"tsup": "^8.5.1",
|
|
50
|
+
"typescript": "^5.9.3",
|
|
51
|
+
"typescript-eslint": "^8.54.0"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=20.0.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"dev": "tsup --watch",
|
|
59
|
+
"start": "node dist/bin/skillink.js",
|
|
60
|
+
"lint": "tsc --noEmit",
|
|
61
|
+
"check": "eslint",
|
|
62
|
+
"format": "prettier --write src"
|
|
63
|
+
}
|
|
64
|
+
}
|