-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "iskill",
"version": "1.0.5",
"description": "A flexible skill installation tool with custom path support",
"main": "dist/cli.js",
"bin": {
"iskill": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"keywords": [
"skills",
"agent",
"cli",
"installation",
"ai",
"automation",
"productivity"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BeCrafter/iSkill.git"
},
"homepage": "https://github.com/BeCrafter/iSkill#readme",
"bugs": {
"url": "https://github.com/BeCrafter/iSkill/issues"
},
"dependencies": {
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"simple-git": "^3.20.0",
"yaml": "^2.3.4",
"glob": "^10.3.10",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/inquirer": "^9.0.7",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0"
},
"engines": {
"node": ">=16.0.0"
}
}