-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.2 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": "labkit",
"version": "1.0.0",
"description": "Reusable kit of agentic patterns for AI coding assistants",
"type": "module",
"bin": {
"labkit": "./dist/index.mjs"
},
"files": [
"dist",
".claude",
".cursor",
".windsurf",
".github",
"scripts"
],
"scripts": {
"build": "tsdown",
"build:binary": "nexe dist/index.mjs -o labkit --build",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dallen4/labkit.git"
},
"keywords": [
"ai",
"claude",
"cursor",
"windsurf",
"copilot",
"agentic",
"toolkit"
],
"author": "Nieky Allen",
"license": "MIT",
"bugs": {
"url": "https://github.com/dallen4/labkit/issues"
},
"homepage": "https://github.com/dallen4/labkit#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"cosmiconfig": "^9.0.1",
"cpx2": "^8.0.0",
"js-yaml": "^4.1.1",
"tiged": "^2.12.7"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"nexe": "^5.0.0-beta.4",
"tsdown": "^0.21.4",
"typescript": "^5.9.3"
}
}