-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.31 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
{
"name": "skillstash",
"version": "0.19.2",
"description": "Git-based skill stash - manage, sync & share agent skills across devices",
"type": "module",
"bin": {
"skillstash": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build && npm test",
"version": "node scripts/update-badge-version.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"skillstash",
"skill",
"stash",
"sync",
"agent",
"codex",
"claude code",
"gemini",
"git",
"cli",
"cursor",
"code"
],
"author": "Duducoco",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/prompts": "^8.4.2",
"chalk": "^5.3.0",
"commander": "^13.1.0",
"ink": "^5.2.1",
"react": "^18.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@types/node": "^22.0.0",
"@types/react": "^18.3.28",
"@vitest/coverage-v8": "^3.2.4",
"semantic-release": "^24.2.9",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.12.0"
}
}