-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"name": "create-skill-pkg",
"version": "0.0.4",
"description": "CLI to scaffold AI Agent Skill projects in JS, TS or Python",
"type": "module",
"author": "iss-tools",
"license": "MIT",
"keywords": [
"ai",
"agent",
"skill",
"template",
"scaffold",
"cli",
"python",
"typescript"
],
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iss-tools/create-skill-pkg.git"
},
"bugs": {
"url": "https://github.com/iss-tools/create-skill-pkg/issues"
},
"homepage": "https://github.com/iss-tools/create-skill-pkg#readme",
"bin": {
"create-skill-pkg": "bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"release": "release-it",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.1",
"@types/prompts": "^2.4.9",
"husky": "^9.1.7",
"release-it": "^21.0.0"
}
}