-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "@islee23520/lfg",
"version": "0.1.10",
"description": "omo / lazycodex Grok Build adapter: npx @islee23520/lfg setup --run installs ~/.grok via internal grok-install (not a Grok plugin).",
"publishConfig": {
"access": "public"
},
"author": {
"name": "islee23520",
"email": "lysk9884@gmail.com"
},
"type": "module",
"bin": {
"lfg": "bin/lfg.js"
},
"files": [
"bin",
"dist",
"skills",
"README.md",
"AGENTS.md",
"src/AGENTS.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/islee23520/lfg.git"
},
"homepage": "https://github.com/islee23520/lfg#readme",
"bugs": {
"url": "https://github.com/islee23520/lfg/issues"
},
"keywords": [
"lazycodex",
"grok-build",
"npx",
"setup"
],
"scripts": {
"setup": "sh bin/lfg.js setup",
"test": "npm run build && vitest run src/cli/*.test.ts src/grok-adapter/*.test.ts",
"verify": "npm run assert-pack && npm test && npm run typecheck && npm run self-test",
"self-test": "npm run build && node dist/self-test.js",
"typecheck": "tsc --noEmit",
"build": "node scripts/build.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm test",
"assert-pack": "node scripts/assert-npm-pack-bin.mjs",
"record-publish-gap": "npm run build && node scripts/record-publish-gap.mjs",
"assert-publish-auth": "npm run build && node scripts/assert-npm-publish-auth.mjs",
"pre-publish-check": "npm run build && node scripts/pre-publish-check.mjs"
},
"devDependencies": {
"@types/node": "^24.10.1",
"esbuild": "^0.27.1",
"typescript": "^6.0.3",
"vitest": "^4.0.14"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
}
}