konstruct 0.1.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 +77 -0
- package/bin/cli.js +23 -0
- package/dist/chunk-MYTZHNE6.js +696 -0
- package/dist/index.js +1197 -0
- package/dist/init-CJ7EZ75L.js +6 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "konstruct",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Package manager for AI agent skills",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "aruneshsingh",
|
|
8
|
+
"homepage": "https://github.com/AruneshSingh/konstruct",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/AruneshSingh/konstruct.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ai",
|
|
15
|
+
"skills",
|
|
16
|
+
"agents",
|
|
17
|
+
"package-manager",
|
|
18
|
+
"cli"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"konstruct": "./bin/cli.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"bin"
|
|
26
|
+
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"clean": "rm -rf dist",
|
|
32
|
+
"build": "npm run clean && tsup src/cli/index.ts --format esm --out-dir dist",
|
|
33
|
+
"dev": "tsx src/cli/index.ts",
|
|
34
|
+
"start": "tsx src/cli/index.ts",
|
|
35
|
+
"test": "vitest",
|
|
36
|
+
"test:run": "vitest run",
|
|
37
|
+
"type-check": "tsc --noEmit",
|
|
38
|
+
"prepublishOnly": "npm run build"
|
|
39
|
+
},
|
|
40
|
+
"release": {
|
|
41
|
+
"branches": ["main"]
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"commander": "^13.0.0",
|
|
45
|
+
"gray-matter": "^4.0.3",
|
|
46
|
+
"ink": "^6.6.0",
|
|
47
|
+
"picocolors": "^1.1.1",
|
|
48
|
+
"react": "^19.2.4",
|
|
49
|
+
"simple-git": "^3.27.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^22.0.0",
|
|
53
|
+
"@types/react": "^19.2.13",
|
|
54
|
+
"semantic-release": "^24.2.9",
|
|
55
|
+
"tsup": "^8.0.0",
|
|
56
|
+
"tsx": "^4.7.0",
|
|
57
|
+
"typescript": "^5.4.0",
|
|
58
|
+
"vitest": "^2.0.0"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=18"
|
|
62
|
+
}
|
|
63
|
+
}
|